Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.49 KB

CustomCommunicationrecipientsgroupResponse.md

File metadata and controls

31 lines (22 loc) · 1.49 KB

CustomCommunicationrecipientsgroupResponse

Generic CommunicationrecipientsGroup Response

Properties

Name Type Description Notes
s_communicationrecipientsgroup_label str The label for the Communicationrecipientsgroup
a_obj_communicationrecipientsrecipient List[CustomCommunicationrecipientsrecipientResponse]

Example

from eZmaxApi.models.custom_communicationrecipientsgroup_response import CustomCommunicationrecipientsgroupResponse

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

# convert the object into a dict
custom_communicationrecipientsgroup_response_dict = custom_communicationrecipientsgroup_response_instance.to_dict()
# create an instance of CustomCommunicationrecipientsgroupResponse from a dict
custom_communicationrecipientsgroup_response_form_dict = custom_communicationrecipientsgroup_response.from_dict(custom_communicationrecipientsgroup_response_dict)

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