Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

File metadata and controls

31 lines (22 loc) · 1.3 KB

OverrideTenantPolicyConfigRequest

Properties

Name Type Description Notes
config_overrides object The config overrides for the tenant policy.
tenant_id str The id of the tenant.
tenant_policy_id str The id of the tenant policy.

Example

from onelens_backend_client.models.override_tenant_policy_config_request import OverrideTenantPolicyConfigRequest

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

# convert the object into a dict
override_tenant_policy_config_request_dict = override_tenant_policy_config_request_instance.to_dict()
# create an instance of OverrideTenantPolicyConfigRequest from a dict
override_tenant_policy_config_request_form_dict = override_tenant_policy_config_request.from_dict(override_tenant_policy_config_request_dict)

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