| Name |
Type |
Description |
Notes |
| application_id |
int |
Identifier of the Application connected to the loyalty program or the campaign. It is displayed in your Talon.One deployment URL. |
|
| campaign_id |
int |
Identifier of the campaign where the coupon or gift card is created. |
[optional] |
| loyalty_program_id |
int |
Identifier of the loyalty program. You can get the ID with the List loyalty programs endpoint. |
[optional] |
| subledger_id |
int |
Identifier of the subledger the points are added to or deducted from. If there is no existing subledger with this ID, the subledger is created automatically. |
[optional] |
| customer_profile_id |
str |
Integration ID of the customer profile linked to the support request. |
|
| request_type |
str |
Type of reward requested, including gift cards, personal coupons, and loyalty point additions or deductions. |
|
| request_value |
float |
Requested monetary balance of the gift card or the number of loyalty points to be added or deducted. |
[optional] |
| request_note |
str |
Notes attached to the support request. |
|
from talon_one.models.support_request_input import SupportRequestInput
# TODO update the JSON string below
json = "{}"
# create an instance of SupportRequestInput from a JSON string
support_request_input_instance = SupportRequestInput.from_json(json)
# print the JSON string representation of the object
print(SupportRequestInput.to_json())
# convert the object into a dict
support_request_input_dict = support_request_input_instance.to_dict()
# create an instance of SupportRequestInput from a dict
support_request_input_from_dict = SupportRequestInput.from_dict(support_request_input_dict)
[Back to Model list] [Back to API list] [Back to README]