| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] | |
| acs | HrefObject | SAML 2.0 Assertion Consumer Service URL for the Okta SP | [optional] |
| authorize | HrefObject | OAuth 2.0 authorization endpoint for the IdP OAuth 2.0 Authorization Code flow | [optional] |
| client_redirect_uri | HrefObject | Redirect URI for the OAuth 2.0 Authorization Code flow | [optional] |
| metadata | HrefObject | Federation metadata document for the IdP (for example: SAML 2.0 Metadata) | [optional] |
| users | HrefObject | IdP users | [optional] |
| deactivate | HrefObject | Deactivate IdP | [optional] |
| activate | HrefObject | Activate IdP | [optional] |
| keys | HrefObject | IdP keys | [optional] |
from okta.models.identity_provider_links import IdentityProviderLinks
# TODO update the JSON string below
json = "{}"
# create an instance of IdentityProviderLinks from a JSON string
identity_provider_links_instance = IdentityProviderLinks.from_json(json)
# print the JSON string representation of the object
print(IdentityProviderLinks.to_json())
# convert the object into a dict
identity_provider_links_dict = identity_provider_links_instance.to_dict()
# create an instance of IdentityProviderLinks from a dict
identity_provider_links_from_dict = IdentityProviderLinks.from_dict(identity_provider_links_dict)