| Name | Type | Description | Notes |
|---|---|---|---|
| customer_profiles | List[MultipleCustomerProfileIntegrationRequestItem] | [optional] |
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)