Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.65 KB

File metadata and controls

32 lines (23 loc) · 1.65 KB

ReachV1ContactsSegmentsProfileUpdateRequest

Rename a segment and/or replace the conditions that define it

Properties

Name Type Description Notes
name str
conditions List[ReachV1ContactsSegmentsProfileStoreRequestConditionsInner] Replaces the existing conditions entirely. Omit to keep the current ones. [optional]
logic str How to combine multiple conditions. Required when conditions are given. [optional]

Example

from hostinger_api.models.reach_v1_contacts_segments_profile_update_request import ReachV1ContactsSegmentsProfileUpdateRequest

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

# convert the object into a dict
reach_v1_contacts_segments_profile_update_request_dict = reach_v1_contacts_segments_profile_update_request_instance.to_dict()
# create an instance of ReachV1ContactsSegmentsProfileUpdateRequest from a dict
reach_v1_contacts_segments_profile_update_request_from_dict = ReachV1ContactsSegmentsProfileUpdateRequest.from_dict(reach_v1_contacts_segments_profile_update_request_dict)

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