Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

UpdateRepoAvatarOption

UpdateRepoAvatarUserOption options when updating the repo avatar

Properties

Name Type Description Notes
image str image must be base64 encoded [optional]

Example

from openapi_client.models.update_repo_avatar_option import UpdateRepoAvatarOption

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

# convert the object into a dict
update_repo_avatar_option_dict = update_repo_avatar_option_instance.to_dict()
# create an instance of UpdateRepoAvatarOption from a dict
update_repo_avatar_option_from_dict = UpdateRepoAvatarOption.from_dict(update_repo_avatar_option_dict)

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