Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

SettingsLicensing200Response

Properties

Name Type Description Notes
counts SettingsLicensing200ResponseCounts [optional]
limits SettingsLicensing200ResponseLimits [optional]
tenant_over_license_limit int [optional]

Example

from kandji.models.settings_licensing200_response import SettingsLicensing200Response

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

# convert the object into a dict
settings_licensing200_response_dict = settings_licensing200_response_instance.to_dict()
# create an instance of SettingsLicensing200Response from a dict
settings_licensing200_response_from_dict = SettingsLicensing200Response.from_dict(settings_licensing200_response_dict)

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