| Name | Type | Description | Notes |
|---|---|---|---|
| worker_id | str | ||
| version | str | ||
| version_matching | bool |
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)