| 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] |
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]