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
fromokta.models.open_id_connect_application_settings_refresh_tokenimportOpenIdConnectApplicationSettingsRefreshToken# TODO update the JSON string belowjson="{}"# create an instance of OpenIdConnectApplicationSettingsRefreshToken from a JSON stringopen_id_connect_application_settings_refresh_token_instance=OpenIdConnectApplicationSettingsRefreshToken.from_json(json)
# print the JSON string representation of the objectprint(OpenIdConnectApplicationSettingsRefreshToken.to_json())
# convert the object into a dictopen_id_connect_application_settings_refresh_token_dict=open_id_connect_application_settings_refresh_token_instance.to_dict()
# create an instance of OpenIdConnectApplicationSettingsRefreshToken from a dictopen_id_connect_application_settings_refresh_token_from_dict=OpenIdConnectApplicationSettingsRefreshToken.from_dict(open_id_connect_application_settings_refresh_token_dict)