Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

File metadata and controls

34 lines (25 loc) · 1.54 KB

CreateRecommendationUnitPullRequest

Properties

Name Type Description Notes
title str The title of the pull request.
description str The description of the pull request.
source_branch str The source branch of the pull request.
branch_name str The branch name of the pull request.
id str The unique identifier of the recommendation unit template by alias.
commit_message str Recommendation change commit message

Example

from onelens_backend_client.models.create_recommendation_unit_pull_request import CreateRecommendationUnitPullRequest

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

# convert the object into a dict
create_recommendation_unit_pull_request_dict = create_recommendation_unit_pull_request_instance.to_dict()
# create an instance of CreateRecommendationUnitPullRequest from a dict
create_recommendation_unit_pull_request_form_dict = create_recommendation_unit_pull_request.from_dict(create_recommendation_unit_pull_request_dict)

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