Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 790 Bytes

File metadata and controls

28 lines (20 loc) · 790 Bytes

Branch

Properties

Name Type Description Notes
name object Имя ветки.

Example

from timeweb_cloud_api.models.branch import Branch

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

# convert the object into a dict
branch_dict = branch_instance.to_dict()
# create an instance of Branch from a dict
branch_form_dict = branch.from_dict(branch_dict)

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