You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A list of IDs of the campaigns to get coupons from.
limit
int
The maximum number of coupons included in the response.
[default to 10]
Example
fromtalon_one.models.get_integration_coupon_requestimportGetIntegrationCouponRequest# TODO update the JSON string belowjson="{}"# create an instance of GetIntegrationCouponRequest from a JSON stringget_integration_coupon_request_instance=GetIntegrationCouponRequest.from_json(json)
# print the JSON string representation of the objectprint(GetIntegrationCouponRequest.to_json())
# convert the object into a dictget_integration_coupon_request_dict=get_integration_coupon_request_instance.to_dict()
# create an instance of GetIntegrationCouponRequest from a dictget_integration_coupon_request_from_dict=GetIntegrationCouponRequest.from_dict(get_integration_coupon_request_dict)