Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.21 KB

CreateRecommenadtionUnitPullResponse.md

File metadata and controls

29 lines (20 loc) · 1.21 KB

CreateRecommenadtionUnitPullResponse

Properties

Name Type Description Notes
pr_link str The recommendation unit pull request link.

Example

from onelens_backend_client.models.create_recommenadtion_unit_pull_response import CreateRecommenadtionUnitPullResponse

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

# convert the object into a dict
create_recommenadtion_unit_pull_response_dict = create_recommenadtion_unit_pull_response_instance.to_dict()
# create an instance of CreateRecommenadtionUnitPullResponse from a dict
create_recommenadtion_unit_pull_response_form_dict = create_recommenadtion_unit_pull_response.from_dict(create_recommenadtion_unit_pull_response_dict)

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