Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 976 Bytes

File metadata and controls

31 lines (22 loc) · 976 Bytes

EnrollRequest

Base serializer class which doesn't implement create/update methods

Properties

Name Type Description Notes
device_serial str
device_name str

Example

from authentik_client.models.enroll_request import EnrollRequest

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

# convert the object into a dict
enroll_request_dict = enroll_request_instance.to_dict()
# create an instance of EnrollRequest from a dict
enroll_request_from_dict = EnrollRequest.from_dict(enroll_request_dict)

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