Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

PatchedEnrollmentTokenRequest

Properties

Name Type Description Notes
device_group UUID [optional]
connector UUID [optional]
name str [optional]
expiring bool [optional]
expires datetime [optional]

Example

from authentik_client.models.patched_enrollment_token_request import PatchedEnrollmentTokenRequest

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

# convert the object into a dict
patched_enrollment_token_request_dict = patched_enrollment_token_request_instance.to_dict()
# create an instance of PatchedEnrollmentTokenRequest from a dict
patched_enrollment_token_request_from_dict = PatchedEnrollmentTokenRequest.from_dict(patched_enrollment_token_request_dict)

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