| Name |
Type |
Description |
Notes |
| seat_count |
int |
|
[optional] |
from okta.models.application_licensing import ApplicationLicensing
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationLicensing from a JSON string
application_licensing_instance = ApplicationLicensing.from_json(json)
# print the JSON string representation of the object
print(ApplicationLicensing.to_json())
# convert the object into a dict
application_licensing_dict = application_licensing_instance.to_dict()
# create an instance of ApplicationLicensing from a dict
application_licensing_from_dict = ApplicationLicensing.from_dict(application_licensing_dict)
[Back to Model list] [Back to API list] [Back to README]