File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 35
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-f3cab810772df12f57fc7a4a7e27e4fa6fb4a8022fd52178b5116b4089f0544b .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-55ff507660a4f8b4a1809ca01861098c7bc72e8e6ea038fb3aa8c0a3b9a954e2 .yml
Original file line number Diff line number Diff line change 6
6
from .._models import BaseModel
7
7
from .shared .connection_status_type import ConnectionStatusType
8
8
9
- __all__ = ["Introspection" , "AuthenticationMethods " , "AuthenticationMethodsConnectionStatus " ]
9
+ __all__ = ["Introspection" , "AuthenticationMethod " , "AuthenticationMethodConnectionStatus " ]
10
10
11
11
12
- class AuthenticationMethodsConnectionStatus (BaseModel ):
12
+ class AuthenticationMethodConnectionStatus (BaseModel ):
13
13
message : Optional [str ] = None
14
14
15
15
status : Optional [ConnectionStatusType ] = None
16
16
17
17
18
- class AuthenticationMethods (BaseModel ):
19
- connection_status : Optional [AuthenticationMethodsConnectionStatus ] = None
18
+ class AuthenticationMethod (BaseModel ):
19
+ connection_status : Optional [AuthenticationMethodConnectionStatus ] = None
20
20
21
21
type : Optional [str ] = None
22
22
@@ -25,7 +25,7 @@ class Introspection(BaseModel):
25
25
account_id : str
26
26
"""The Finch uuid of the account used to connect this company."""
27
27
28
- authentication_methods : AuthenticationMethods
28
+ authentication_methods : List [ AuthenticationMethod ]
29
29
30
30
client_id : str
31
31
"""The client id of the application associated with the `access_token`."""
You can’t perform that action at this time.
0 commit comments