Authorization

class github.Authorization.Authorization

This class represents Authorizations. The reference can be found here https://docs.github.com/en/enterprise-server@3.0/rest/reference/oauth-authorizations

created_at
Type:datetime.datetime
delete() → None
Calls:DELETE /authorizations/{id}
edit(scopes: Union[List[str], github.GithubObject._NotSetType] = NotSet, add_scopes: Union[List[str], github.GithubObject._NotSetType] = NotSet, remove_scopes: Union[List[str], github.GithubObject._NotSetType] = NotSet, note: Union[str, github.GithubObject._NotSetType] = NotSet, note_url: Union[str, github.GithubObject._NotSetType] = NotSet) → None
Calls:

PATCH /authorizations/{id}

Parameters:
  • scopes – list of string
  • add_scopes – list of string
  • remove_scopes – list of string
  • note – string
  • note_url – string
Return type:

None