Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 945 Bytes

File metadata and controls

30 lines (21 loc) · 945 Bytes

ParameterMeta

Properties

Name Type Description Notes
matches List[ParameterMatch] [optional]
name str [optional]

Example

from cyperf.models.parameter_meta import ParameterMeta

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

# convert the object into a dict
parameter_meta_dict = parameter_meta_instance.to_dict()
# create an instance of ParameterMeta from a dict
parameter_meta_from_dict = ParameterMeta.from_dict(parameter_meta_dict)

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