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) · 942 Bytes

File metadata and controls

32 lines (24 loc) · 942 Bytes

Variable

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
key str [optional]
type str
value str [optional]

Example

from clientapi_atrocore.models.variable import Variable

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

# convert the object into a dict
variable_dict = variable_instance.to_dict()
# create an instance of Variable from a dict
variable_form_dict = variable.from_dict(variable_dict)

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