Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.15 KB

File metadata and controls

37 lines (28 loc) · 1.15 KB

ContactVM

Properties

Name Type Description Notes
id str [optional]
name str [optional]
email str [optional]
groups List[str] [optional]
subscription_id str [optional]
created_time datetime [optional]
creator_user_id str [optional]
edited_time datetime [optional]
editor_user_id str [optional]

Example

from fastreport_cloud_sdk.models.contact_vm import ContactVM

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

# convert the object into a dict
contact_vm_dict = contact_vm_instance.to_dict()
# create an instance of ContactVM from a dict
contact_vm_form_dict = contact_vm.from_dict(contact_vm_dict)

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