Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.18 KB

File metadata and controls

29 lines (20 loc) · 1.18 KB

IntegrationProfileEntity

Properties

Name Type Description Notes
profile_id str ID of the customer profile set by your integration layer. Note: If the customer does not yet have a known `profileId`, we recommend you use a guest `profileId`. [optional]

Example

from talon_one.models.integration_profile_entity import IntegrationProfileEntity

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

# convert the object into a dict
integration_profile_entity_dict = integration_profile_entity_instance.to_dict()
# create an instance of IntegrationProfileEntity from a dict
integration_profile_entity_from_dict = IntegrationProfileEntity.from_dict(integration_profile_entity_dict)

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