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
fromokta.models.identity_provider_credentials_clientimportIdentityProviderCredentialsClient# TODO update the JSON string belowjson="{}"# create an instance of IdentityProviderCredentialsClient from a JSON stringidentity_provider_credentials_client_instance=IdentityProviderCredentialsClient.from_json(json)
# print the JSON string representation of the objectprint(IdentityProviderCredentialsClient.to_json())
# convert the object into a dictidentity_provider_credentials_client_dict=identity_provider_credentials_client_instance.to_dict()
# create an instance of IdentityProviderCredentialsClient from a dictidentity_provider_credentials_client_from_dict=IdentityProviderCredentialsClient.from_dict(identity_provider_credentials_client_dict)