Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 2.2 KB

File metadata and controls

31 lines (22 loc) · 2.2 KB

ReachV1ContactsSegmentsProfileStoreRequestConditionsInner

Properties

Name Type Description Notes
attribute str 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

from hostinger_api.models.reach_v1_contacts_segments_profile_store_request_conditions_inner import ReachV1ContactsSegmentsProfileStoreRequestConditionsInner

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

# convert the object into a dict
reach_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 dict
reach_v1_contacts_segments_profile_store_request_conditions_inner_from_dict = ReachV1ContactsSegmentsProfileStoreRequestConditionsInner.from_dict(reach_v1_contacts_segments_profile_store_request_conditions_inner_dict)

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