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
Whether the legacy Okta Mobile application is enabled for the org
[optional]
Example
fromokta.models.well_known_org_metadata_settingsimportWellKnownOrgMetadataSettings# TODO update the JSON string belowjson="{}"# create an instance of WellKnownOrgMetadataSettings from a JSON stringwell_known_org_metadata_settings_instance=WellKnownOrgMetadataSettings.from_json(json)
# print the JSON string representation of the objectprint(WellKnownOrgMetadataSettings.to_json())
# convert the object into a dictwell_known_org_metadata_settings_dict=well_known_org_metadata_settings_instance.to_dict()
# create an instance of WellKnownOrgMetadataSettings from a dictwell_known_org_metadata_settings_from_dict=WellKnownOrgMetadataSettings.from_dict(well_known_org_metadata_settings_dict)