Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.16 KB

File metadata and controls

35 lines (26 loc) · 1.16 KB

EnrollmentToken

Properties

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

Example

from authentik_client.models.enrollment_token import EnrollmentToken

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

# convert the object into a dict
enrollment_token_dict = enrollment_token_instance.to_dict()
# create an instance of EnrollmentToken from a dict
enrollment_token_from_dict = EnrollmentToken.from_dict(enrollment_token_dict)

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