Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 901 Bytes

VOID.md

File metadata and controls

29 lines (22 loc) · 901 Bytes

VOID

Properties

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

Example

from phrasetms_client.models.void import VOID

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

# convert the object into a dict
void_dict = void_instance.to_dict()
# create an instance of VOID from a dict
void_from_dict = VOID.from_dict(void_dict)

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