Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 927 Bytes

DataType.md

File metadata and controls

30 lines (21 loc) · 927 Bytes

DataType

Properties

Name Type Description Notes
values List[DataTypeValuesInner] A list of parameters for this data type. [optional]
id str [optional]

Example

from cyperf.models.data_type import DataType

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

# convert the object into a dict
data_type_dict = data_type_instance.to_dict()
# create an instance of DataType from a dict
data_type_from_dict = DataType.from_dict(data_type_dict)

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