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
Properties to match against a customer profile. All provided attributes will be exactly matched against profile attributes.
[optional]
integration_ids
List[str]
[optional]
profile_ids
List[int]
[optional]
Example
fromtalon_one.models.customer_profile_search_queryimportCustomerProfileSearchQuery# TODO update the JSON string belowjson="{}"# create an instance of CustomerProfileSearchQuery from a JSON stringcustomer_profile_search_query_instance=CustomerProfileSearchQuery.from_json(json)
# print the JSON string representation of the objectprint(CustomerProfileSearchQuery.to_json())
# convert the object into a dictcustomer_profile_search_query_dict=customer_profile_search_query_instance.to_dict()
# create an instance of CustomerProfileSearchQuery from a dictcustomer_profile_search_query_from_dict=CustomerProfileSearchQuery.from_dict(customer_profile_search_query_dict)