Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 840 Bytes

File metadata and controls

30 lines (21 loc) · 840 Bytes

Spire

Properties

Name Type Description Notes
enabled bool [optional] [default to True]
values object [optional]

Example

from platform_api_python_client.models.spire import Spire

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

# convert the object into a dict
spire_dict = spire_instance.to_dict()
# create an instance of Spire from a dict
spire_from_dict = Spire.from_dict(spire_dict)

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