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 built-in contact attribute, or `cf:{fieldUuid}` to target a custom contact field. Custom fields are addressed by field UUID; their slug is not accepted. Built-in attributes: `email`, `note`, `domain`, `source`, `opt_in_method`, `subscription_status`, `subscribed_at`, `unsubscribed_at`, `created_at`, `tag`, `campaigns`, `processed`, `opened`, `clicked`, `delivered`, `bounced`, `soft_bounced`, `dropped`. Which operators are accepted depends on the attribute.
operator
str
value
str
Always a string, including for numeric and date comparisons
Example
fromhostinger_api.models.reach_v1_contacts_segments_profile_store_request_conditions_innerimportReachV1ContactsSegmentsProfileStoreRequestConditionsInner# TODO update the JSON string belowjson="{}"# create an instance of ReachV1ContactsSegmentsProfileStoreRequestConditionsInner from a JSON stringreach_v1_contacts_segments_profile_store_request_conditions_inner_instance=ReachV1ContactsSegmentsProfileStoreRequestConditionsInner.from_json(json)
# print the JSON string representation of the objectprint(ReachV1ContactsSegmentsProfileStoreRequestConditionsInner.to_json())
# convert the object into a dictreach_v1_contacts_segments_profile_store_request_conditions_inner_dict=reach_v1_contacts_segments_profile_store_request_conditions_inner_instance.to_dict()
# create an instance of ReachV1ContactsSegmentsProfileStoreRequestConditionsInner from a dictreach_v1_contacts_segments_profile_store_request_conditions_inner_from_dict=ReachV1ContactsSegmentsProfileStoreRequestConditionsInner.from_dict(reach_v1_contacts_segments_profile_store_request_conditions_inner_dict)