Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 835 Bytes

File metadata and controls

30 lines (21 loc) · 835 Bytes

Variable

Properties

Name Type Description Notes
key str [optional]
value str [optional]

Example

from quantcdn.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_from_dict = Variable.from_dict(variable_dict)

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