MspManagedTenantSettingsDtoPage
Properties
| Name |
Type |
Description |
Notes |
| count |
int |
The total number of results available. |
[optional] |
| items |
List[MspManagedTenantSettingsDto] |
The list of items retrieved. |
[optional] |
| limit |
int |
The number of results retrieved. |
[optional] |
| offset |
int |
The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified. |
[optional] |
Example
from scc_firewall_manager_sdk.models.msp_managed_tenant_settings_dto_page import MspManagedTenantSettingsDtoPage
# TODO update the JSON string below
json = "{}"
# create an instance of MspManagedTenantSettingsDtoPage from a JSON string
msp_managed_tenant_settings_dto_page_instance = MspManagedTenantSettingsDtoPage.from_json(json)
# print the JSON string representation of the object
print(MspManagedTenantSettingsDtoPage.to_json())
# convert the object into a dict
msp_managed_tenant_settings_dto_page_dict = msp_managed_tenant_settings_dto_page_instance.to_dict()
# create an instance of MspManagedTenantSettingsDtoPage from a dict
msp_managed_tenant_settings_dto_page_form_dict = msp_managed_tenant_settings_dto_page.from_dict(msp_managed_tenant_settings_dto_page_dict)
[Back to Model list] [Back to API list] [Back to README]