Base serializer class which doesn't implement create/update methods
| Name | Type | Description | Notes |
|---|---|---|---|
| device_serial | str | ||
| device_name | str |
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)