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
Name of the optional parameter in the sign-in form
[optional]
optional_field1_value
str
Name of the optional value in the sign-in form
[optional]
optional_field2
str
Name of the optional parameter in the sign-in form
[optional]
optional_field2_value
str
Name of the optional value in the sign-in form
[optional]
optional_field3
str
Name of the optional parameter in the sign-in form
[optional]
optional_field3_value
str
Name of the optional value in the sign-in form
[optional]
password_field
str
CSS selector for the Password field in the sign-in form
url
str
The URL of the sign-in page for this app
username_field
str
CSS selector for the Username field in the sign-in form
Example
fromokta.models.secure_password_store_application_settings_applicationimportSecurePasswordStoreApplicationSettingsApplication# TODO update the JSON string belowjson="{}"# create an instance of SecurePasswordStoreApplicationSettingsApplication from a JSON stringsecure_password_store_application_settings_application_instance=SecurePasswordStoreApplicationSettingsApplication.from_json(json)
# print the JSON string representation of the objectprint(SecurePasswordStoreApplicationSettingsApplication.to_json())
# convert the object into a dictsecure_password_store_application_settings_application_dict=secure_password_store_application_settings_application_instance.to_dict()
# create an instance of SecurePasswordStoreApplicationSettingsApplication from a dictsecure_password_store_application_settings_application_from_dict=SecurePasswordStoreApplicationSettingsApplication.from_dict(secure_password_store_application_settings_application_dict)