Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1006 Bytes

File metadata and controls

31 lines (22 loc) · 1006 Bytes

ParameterMatch

Properties

Name Type Description Notes
match_location List[str] [optional]
match_type str [optional]
regex_match RegexMatch [optional]

Example

from cyperf.models.parameter_match import ParameterMatch

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

# convert the object into a dict
parameter_match_dict = parameter_match_instance.to_dict()
# create an instance of ParameterMatch from a dict
parameter_match_from_dict = ParameterMatch.from_dict(parameter_match_dict)

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