| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | Имя ветки. |
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)