Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1006 Bytes

File metadata and controls

30 lines (21 loc) · 1006 Bytes

PatchedLicenseRequest

License Serializer

Properties

Name Type Description Notes
key str [optional]

Example

from authentik_client.models.patched_license_request import PatchedLicenseRequest

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

# convert the object into a dict
patched_license_request_dict = patched_license_request_instance.to_dict()
# create an instance of PatchedLicenseRequest from a dict
patched_license_request_from_dict = PatchedLicenseRequest.from_dict(patched_license_request_dict)

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