Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

SessionIdentityProvider

Properties

Name Type Description Notes
id str Identity Provider ID. If the `type` is `OKTA`, then the `id` is the org ID. [optional] [readonly]
type SessionIdentityProviderType [optional]

Example

from okta.models.session_identity_provider import SessionIdentityProvider

# TODO update the JSON string below
json = "{}"
# create an instance of SessionIdentityProvider from a JSON string
session_identity_provider_instance = SessionIdentityProvider.from_json(json)
# print the JSON string representation of the object
print(SessionIdentityProvider.to_json())

# convert the object into a dict
session_identity_provider_dict = session_identity_provider_instance.to_dict()
# create an instance of SessionIdentityProvider from a dict
session_identity_provider_from_dict = SessionIdentityProvider.from_dict(session_identity_provider_dict)

[Back to Model list] [Back to API list] [Back to README]