Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1 KB

File metadata and controls

33 lines (24 loc) · 1 KB

UserFontsVM

Properties

Name Type Description Notes
skip int [optional]
take int [optional]
count int [optional]
fonts List[UserFontVM] [optional]
t str

Example

from fastreport_cloud_sdk.models.user_fonts_vm import UserFontsVM

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

# convert the object into a dict
user_fonts_vm_dict = user_fonts_vm_instance.to_dict()
# create an instance of UserFontsVM from a dict
user_fonts_vm_form_dict = user_fonts_vm.from_dict(user_fonts_vm_dict)

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