Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

ParamMetadataTypeInfoInt

Properties

Name Type Description Notes
max_value int [optional]
min_value int [optional]

Example

from cyperf.models.param_metadata_type_info_int import ParamMetadataTypeInfoInt

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

# convert the object into a dict
param_metadata_type_info_int_dict = param_metadata_type_info_int_instance.to_dict()
# create an instance of ParamMetadataTypeInfoInt from a dict
param_metadata_type_info_int_from_dict = ParamMetadataTypeInfoInt.from_dict(param_metadata_type_info_int_dict)

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