Serializer for license forecast
| Name | Type | Description | Notes |
|---|---|---|---|
| internal_users | int | ||
| external_users | int | ||
| forecasted_internal_users | int | ||
| forecasted_external_users | int |
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)