@@ -23,28 +23,28 @@ def __init__(
2323 )
2424 self .access_token = access_token
2525 """
26- The 3-legged access token.
27- """
26+ The 3-legged access token.
27+ """
2828
2929 self .expires_in = expires_in
3030 """
31- The TTL for the access token, in seconds.
32- """
31+ The TTL for the access token, in seconds.
32+ """
3333
3434 self .refresh_token = refresh_token
3535 """
36- The refresh token value. Only available if refresh tokens are enabled.
37- """
36+ The refresh token value. Only available if refresh tokens are enabled.
37+ """
3838
3939 self .refresh_token_expires_in = refresh_token_expires_in
4040 """
41- The TTL for the refresh token, in seconds. Only available if refresh tokens are enabled.
42- """
41+ The TTL for the refresh token, in seconds. Only available if refresh tokens are enabled.
42+ """
4343
4444 self .scope = scope
4545 """
46- A comma-separated list of scopes authorized by the member (e.g. "r_liteprofile,r_ads").
47- """
46+ A comma-separated list of scopes authorized by the member (e.g. "r_liteprofile,r_ads").
47+ """
4848
4949
5050class AccessToken2LResponse (BaseAuthResponse ):
@@ -54,13 +54,13 @@ def __init__(self, status_code, url, headers, response, access_token, expires_in
5454 )
5555 self .access_token = access_token
5656 """
57- The two-legged access token.
58- """
57+ The two-legged access token.
58+ """
5959
6060 self .expires_in = expires_in
6161 """
62- The TTL of the access token, in seconds.
63- """
62+ The TTL of the access token, in seconds.
63+ """
6464
6565
6666class IntrospectTokenResponse (BaseAuthResponse ):
@@ -84,43 +84,43 @@ def __init__(
8484 )
8585 self .active = active
8686 """
87- Boolean flag whether the token is a valid, active token.
88- """
87+ Boolean flag whether the token is a valid, active token.
88+ """
8989
9090 self .auth_type = auth_type
9191 """
92- The auth type of the token ("2L", "3L" or "Enterprise_User")
93- """
92+ The auth type of the token ("2L", "3L" or "Enterprise_User")
93+ """
9494
9595 self .authorized_at = authorized_at
9696 """
97- Epoch time in seconds, indicating when the token was authorized.
98- """
97+ Epoch time in seconds, indicating when the token was authorized.
98+ """
9999
100100 self .client_id = client_id
101101 """
102- Developer application client ID.
103- """
102+ Developer application client ID.
103+ """
104104
105105 self .created_at = created_at
106106 """
107- Epoch time in seconds, indicating when this token was originally issued.
108- """
107+ Epoch time in seconds, indicating when this token was originally issued.
108+ """
109109
110110 self .expires_at = expires_at
111111 """
112- Epoch time in seconds, indicating when this token will expire.
113- """
112+ Epoch time in seconds, indicating when this token will expire.
113+ """
114114
115115 self .scope = scope
116116 """
117- A string containing a comma-separated list of scopes associated with this token. This is only returned for 3-legged member tokens.
118- """
117+ A string containing a comma-separated list of scopes associated with this token. This is only returned for 3-legged member tokens.
118+ """
119119
120120 self .status = status
121121 """
122- The token status ("revoked", "expired", or "active")
123- """
122+ The token status ("revoked", "expired", or "active")
123+ """
124124
125125
126126class RefreshTokenExchangeResponse (BaseAuthResponse ):
@@ -140,20 +140,20 @@ def __init__(
140140 )
141141 self .access_token = access_token
142142 """
143- The 3-legged access token.
144- """
143+ The 3-legged access token.
144+ """
145145
146146 self .expires_in = expires_in
147147 """
148- The TTL for the access token, in seconds.
149- """
148+ The TTL for the access token, in seconds.
149+ """
150150
151151 self .refresh_token = refresh_token
152152 """
153- The refresh token value.
154- """
153+ The refresh token value.
154+ """
155155
156156 self .refresh_token_expires_in = refresh_token_expires_in
157157 """
158- The TTL for the refresh token, in seconds.
159- """
158+ The TTL for the refresh token, in seconds.
159+ """
0 commit comments