License Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str |
from authentik_client.models.license_request import LicenseRequest
# TODO update the JSON string below
json = "{}"
# create an instance of LicenseRequest from a JSON string
license_request_instance = LicenseRequest.from_json(json)
# print the JSON string representation of the object
print(LicenseRequest.to_json())
# convert the object into a dict
license_request_dict = license_request_instance.to_dict()
# create an instance of LicenseRequest from a dict
license_request_from_dict = LicenseRequest.from_dict(license_request_dict)