Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.33 KB

File metadata and controls

29 lines (20 loc) · 1.33 KB

MultipleCustomerProfileIntegrationRequest

Properties

Name Type Description Notes
customer_profiles List[MultipleCustomerProfileIntegrationRequestItem] [optional]

Example

from talon_one.models.multiple_customer_profile_integration_request import MultipleCustomerProfileIntegrationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of MultipleCustomerProfileIntegrationRequest from a JSON string
multiple_customer_profile_integration_request_instance = MultipleCustomerProfileIntegrationRequest.from_json(json)
# print the JSON string representation of the object
print(MultipleCustomerProfileIntegrationRequest.to_json())

# convert the object into a dict
multiple_customer_profile_integration_request_dict = multiple_customer_profile_integration_request_instance.to_dict()
# create an instance of MultipleCustomerProfileIntegrationRequest from a dict
multiple_customer_profile_integration_request_from_dict = MultipleCustomerProfileIntegrationRequest.from_dict(multiple_customer_profile_integration_request_dict)

[Back to Model list] [Back to API list] [Back to README]