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
IdP-specific profile for the user. IdP user profiles are IdP-specific but may be customized by the Profile Editor in the Admin Console. > Note: Okta variable names have reserved characters that may conflict with the name of an IdP assertion attribute. You can use the External name to define the attribute name as defined in an IdP assertion such as a SAML attribute name.
fromokta.models.identity_provider_application_userimportIdentityProviderApplicationUser# TODO update the JSON string belowjson="{}"# create an instance of IdentityProviderApplicationUser from a JSON stringidentity_provider_application_user_instance=IdentityProviderApplicationUser.from_json(json)
# print the JSON string representation of the objectprint(IdentityProviderApplicationUser.to_json())
# convert the object into a dictidentity_provider_application_user_dict=identity_provider_application_user_instance.to_dict()
# create an instance of IdentityProviderApplicationUser from a dictidentity_provider_application_user_from_dict=IdentityProviderApplicationUser.from_dict(identity_provider_application_user_dict)