Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 995 Bytes

NUMBER.md

File metadata and controls

30 lines (23 loc) · 995 Bytes

NUMBER

Properties

Name Type Description Notes
ignorable bool [optional]
enabled bool [optional]
value object [optional]
instant bool [optional]

Example

from phrasetms_client.models.number import NUMBER

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

# convert the object into a dict
number_dict = number_instance.to_dict()
# create an instance of NUMBER from a dict
number_from_dict = NUMBER.from_dict(number_dict)

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