Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

EnableTenantPolicyRequest.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

EnableTenantPolicyRequest

Properties

Name Type Description Notes
tenant_id str The id of the tenant.
policy_id str The id of the tenant policy.

Example

from onelens_backend_client.models.enable_tenant_policy_request import EnableTenantPolicyRequest

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

# convert the object into a dict
enable_tenant_policy_request_dict = enable_tenant_policy_request_instance.to_dict()
# create an instance of EnableTenantPolicyRequest from a dict
enable_tenant_policy_request_form_dict = enable_tenant_policy_request.from_dict(enable_tenant_policy_request_dict)

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