Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

CreatePolicyTemplatePullResponse

Properties

Name Type Description Notes
pr_link str The policy pull request link.

Example

from onelens_backend_client.models.create_policy_template_pull_response import CreatePolicyTemplatePullResponse

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

# convert the object into a dict
create_policy_template_pull_response_dict = create_policy_template_pull_response_instance.to_dict()
# create an instance of CreatePolicyTemplatePullResponse from a dict
create_policy_template_pull_response_form_dict = create_policy_template_pull_response.from_dict(create_policy_template_pull_response_dict)

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