Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

File metadata and controls

33 lines (24 loc) · 1.04 KB

LicenseForecast

Serializer for license forecast

Properties

Name Type Description Notes
internal_users int
external_users int
forecasted_internal_users int
forecasted_external_users int

Example

from authentik_client.models.license_forecast import LicenseForecast

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

# convert the object into a dict
license_forecast_dict = license_forecast_instance.to_dict()
# create an instance of LicenseForecast from a dict
license_forecast_from_dict = LicenseForecast.from_dict(license_forecast_dict)

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