Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

File metadata and controls

29 lines (20 loc) · 1.23 KB

OverrideTenantPolicyConfigAPIRequest

Properties

Name Type Description Notes
config_overrides object The config overrides for the tenant policy.

Example

from onelens_backend_client.models.override_tenant_policy_config_api_request import OverrideTenantPolicyConfigAPIRequest

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

# convert the object into a dict
override_tenant_policy_config_api_request_dict = override_tenant_policy_config_api_request_instance.to_dict()
# create an instance of OverrideTenantPolicyConfigAPIRequest from a dict
override_tenant_policy_config_api_request_form_dict = override_tenant_policy_config_api_request.from_dict(override_tenant_policy_config_api_request_dict)

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