Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 978 Bytes

VOIDAllOf.md

File metadata and controls

29 lines (22 loc) · 978 Bytes

VOIDAllOf

Properties

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

Example

from phrasetms_client.models.void_all_of import VOIDAllOf

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

# convert the object into a dict
void_all_of_dict = void_all_of_instance.to_dict()
# create an instance of VOIDAllOf from a dict
void_all_of_from_dict = VOIDAllOf.from_dict(void_all_of_dict)

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