You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given `/api/{version}/users` URI, `FIXED` names are `api` and `users` in order.
Example
frominstana_client.models.fixed_http_path_segment_matching_ruleimportFixedHttpPathSegmentMatchingRule# TODO update the JSON string belowjson="{}"# create an instance of FixedHttpPathSegmentMatchingRule from a JSON stringfixed_http_path_segment_matching_rule_instance=FixedHttpPathSegmentMatchingRule.from_json(json)
# print the JSON string representation of the objectprint(FixedHttpPathSegmentMatchingRule.to_json())
# convert the object into a dictfixed_http_path_segment_matching_rule_dict=fixed_http_path_segment_matching_rule_instance.to_dict()
# create an instance of FixedHttpPathSegmentMatchingRule from a dictfixed_http_path_segment_matching_rule_from_dict=FixedHttpPathSegmentMatchingRule.from_dict(fixed_http_path_segment_matching_rule_dict)