Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

File metadata and controls

30 lines (21 loc) · 1010 Bytes

TypeIntMetadata

Properties

Name Type Description Notes
max_value int The maximum value of the integer [optional]
min_value int The minimum value of the integer [optional]

Example

from cyperf.models.type_int_metadata import TypeIntMetadata

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

# convert the object into a dict
type_int_metadata_dict = type_int_metadata_instance.to_dict()
# create an instance of TypeIntMetadata from a dict
type_int_metadata_from_dict = TypeIntMetadata.from_dict(type_int_metadata_dict)

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