Name | Type | Description | Notes |
---|---|---|---|
policy | TenantPolicyForPolicyWithSetting | The policy details. | |
setting | TenantPolicySettings | The policy setting details. |
from onelens_backend_client.models.tenant_policy_with_setting import TenantPolicyWithSetting
# TODO update the JSON string below
json = "{}"
# create an instance of TenantPolicyWithSetting from a JSON string
tenant_policy_with_setting_instance = TenantPolicyWithSetting.from_json(json)
# print the JSON string representation of the object
print(TenantPolicyWithSetting.to_json())
# convert the object into a dict
tenant_policy_with_setting_dict = tenant_policy_with_setting_instance.to_dict()
# create an instance of TenantPolicyWithSetting from a dict
tenant_policy_with_setting_form_dict = tenant_policy_with_setting.from_dict(tenant_policy_with_setting_dict)