Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 984 Bytes

File metadata and controls

32 lines (23 loc) · 984 Bytes

ContactsVM

Properties

Name Type Description Notes
contacts List[ContactVM] [optional]
skip int [optional]
take int [optional]
count int [optional]

Example

from fastreport_cloud_sdk.models.contacts_vm import ContactsVM

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

# convert the object into a dict
contacts_vm_dict = contacts_vm_instance.to_dict()
# create an instance of ContactsVM from a dict
contacts_vm_form_dict = contacts_vm.from_dict(contacts_vm_dict)

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