Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

IdpConfig

Polymorphic IdP configuration for a tenant. Stored as JSONB in tenant.idp_config. The provider field determines which typed config class to use when parsing configuration.

Properties

Name Type Description Notes
provider SupportedIdP
configuration Dict[str, object] Provider-specific configuration

Example

from ksapi.models.idp_config import IdpConfig

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

# convert the object into a dict
idp_config_dict = idp_config_instance.to_dict()
# create an instance of IdpConfig from a dict
idp_config_from_dict = IdpConfig.from_dict(idp_config_dict)

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