Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

RepoCollaboratorPermission

RepoCollaboratorPermission to get repository permission for a collaborator

Properties

Name Type Description Notes
permission str [optional]
role_name str [optional]
user User [optional]

Example

from openapi_client.models.repo_collaborator_permission import RepoCollaboratorPermission

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

# convert the object into a dict
repo_collaborator_permission_dict = repo_collaborator_permission_instance.to_dict()
# create an instance of RepoCollaboratorPermission from a dict
repo_collaborator_permission_from_dict = RepoCollaboratorPermission.from_dict(repo_collaborator_permission_dict)

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