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
Defines test users to be added to the deployment, specific for this application
[optional]
Example
fromcloudharness_model.models.application_accounts_configimportApplicationAccountsConfig# TODO update the JSON string belowjson="{}"# create an instance of ApplicationAccountsConfig from a JSON stringapplication_accounts_config_instance=ApplicationAccountsConfig.from_json(json)
# print the JSON string representation of the objectprint(ApplicationAccountsConfig.to_json())
# convert the object into a dictapplication_accounts_config_dict=application_accounts_config_instance.to_dict()
# create an instance of ApplicationAccountsConfig from a dictapplication_accounts_config_from_dict=ApplicationAccountsConfig.from_dict(application_accounts_config_dict)