| Name |
Type |
Description |
Notes |
| max_value |
int |
|
[optional] |
| min_value |
int |
|
[optional] |
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]