Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 841 Bytes

File metadata and controls

31 lines (22 loc) · 841 Bytes

Worker

Properties

Name Type Description Notes
worker_id str
version str
version_matching bool

Example

from authentik_client.models.worker import Worker

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

# convert the object into a dict
worker_dict = worker_instance.to_dict()
# create an instance of Worker from a dict
worker_from_dict = Worker.from_dict(worker_dict)

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