Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 898 Bytes

File metadata and controls

30 lines (21 loc) · 898 Bytes

LicenseRequest

License Serializer

Properties

Name Type Description Notes
key str

Example

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)

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