Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.06 KB

File metadata and controls

28 lines (20 loc) · 1.06 KB

GroupsTrait

Properties

Name Type Description Notes
groups List[int] An array of lists (list id) with contacts from the address book to which RCS campaigns are to be sent. id of the lists can be obtained: using the Get lists API in your account Contact Book → Lists

Example

from bsg_api.models.groups_trait import GroupsTrait

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

# convert the object into a dict
groups_trait_dict = groups_trait_instance.to_dict()
# create an instance of GroupsTrait from a dict
groups_trait_from_dict = GroupsTrait.from_dict(groups_trait_dict)

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