You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
attachment to upload (this parameter is incompatible with `external_url`)
[optional]
external_url
str
url to external asset (this parameter is incompatible with `attachment`)
[optional]
Example
fromopenapi_client.models.repo_create_release_attachment_requestimportRepoCreateReleaseAttachmentRequest# TODO update the JSON string belowjson="{}"# create an instance of RepoCreateReleaseAttachmentRequest from a JSON stringrepo_create_release_attachment_request_instance=RepoCreateReleaseAttachmentRequest.from_json(json)
# print the JSON string representation of the objectprint(RepoCreateReleaseAttachmentRequest.to_json())
# convert the object into a dictrepo_create_release_attachment_request_dict=repo_create_release_attachment_request_instance.to_dict()
# create an instance of RepoCreateReleaseAttachmentRequest from a dictrepo_create_release_attachment_request_from_dict=RepoCreateReleaseAttachmentRequest.from_dict(repo_create_release_attachment_request_dict)