Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

NewConfigurationsResponse

Properties

Name Type Description Notes
var_10x int [optional]
var_1x int [optional]
var_2x int [optional]
var_4x int [optional]
var_8x int [optional]

Example

from hyperstack.models.new_configurations_response import NewConfigurationsResponse

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

# convert the object into a dict
new_configurations_response_dict = new_configurations_response_instance.to_dict()
# create an instance of NewConfigurationsResponse from a dict
new_configurations_response_from_dict = NewConfigurationsResponse.from_dict(new_configurations_response_dict)

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