Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

FindParamMatchesOperation

Properties

Name Type Description Notes
actions List[ActionInputFindParam] [optional]
app_id str [optional]
match_location List[str] [optional]
pattern str [optional]

Example

from cyperf.models.find_param_matches_operation import FindParamMatchesOperation

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

# convert the object into a dict
find_param_matches_operation_dict = find_param_matches_operation_instance.to_dict()
# create an instance of FindParamMatchesOperation from a dict
find_param_matches_operation_from_dict = FindParamMatchesOperation.from_dict(find_param_matches_operation_dict)

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