diff --git a/disco/types/oauth.py b/disco/types/oauth.py index 45962a5..c231f7c 100644 --- a/disco/types/oauth.py +++ b/disco/types/oauth.py @@ -4,14 +4,6 @@ from disco.types.user import User from disco.util.snowflake import to_snowflake -class AccessToken(SlottedModel): - access_token = Field(text) - token_type = Field(text) - expires_in = Field(int) - refresh_token = Field(text) - scope = Field(text) - - class TeamMembershipState(object): INVITED = 1 ACCEPTED = 2