You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the organisations list method, the Identity Providers List is not parsed properly.
This does not occur if the decoded json is fed to init of OrganizationResponse object as kwargs parameters.
The bug is caused by the type information for the field "identity_providers" in OrganizationResponse being listed as list[IdentityProvidersResponse], where it should be list[IdentityProviderResponse] (note the extra 's' after Provider).
The text was updated successfully, but these errors were encountered:
When using the organisations list method, the Identity Providers List is not parsed properly.
This does not occur if the decoded json is fed to init of OrganizationResponse object as kwargs parameters.
The bug is caused by the type information for the field "identity_providers" in OrganizationResponse being listed as
list[IdentityProvidersResponse]
, where it should belist[IdentityProviderResponse]
(note the extra 's' after Provider).The text was updated successfully, but these errors were encountered: