| 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] |
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)