Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.31 KB

File metadata and controls

29 lines (20 loc) · 1.31 KB

PathParameterHttpPathSegmentMatchingRule

Properties

Name Type Description Notes
name str Given `/api/{version}/users` URI, `PARAMETER` name is `version`.

Example

from instana_client.models.path_parameter_http_path_segment_matching_rule import PathParameterHttpPathSegmentMatchingRule

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

# convert the object into a dict
path_parameter_http_path_segment_matching_rule_dict = path_parameter_http_path_segment_matching_rule_instance.to_dict()
# create an instance of PathParameterHttpPathSegmentMatchingRule from a dict
path_parameter_http_path_segment_matching_rule_from_dict = PathParameterHttpPathSegmentMatchingRule.from_dict(path_parameter_http_path_segment_matching_rule_dict)

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