Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 1000 Bytes

File metadata and controls

32 lines (24 loc) · 1000 Bytes

NextNumber

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
entity_type str [optional]
field_name str [optional]
value int [optional]

Example

from clientapi_atrocore.models.next_number import NextNumber

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

# convert the object into a dict
next_number_dict = next_number_instance.to_dict()
# create an instance of NextNumber from a dict
next_number_form_dict = next_number.from_dict(next_number_dict)

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