Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.01 KB

File metadata and controls

36 lines (27 loc) · 1.01 KB

UserWorker

Properties

Name Type Description Notes
id str
name str
description str
state str
language str
tenant_id int [optional]
revision int
status str

Example

from sensorbucket.models.user_worker import UserWorker

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

# convert the object into a dict
user_worker_dict = user_worker_instance.to_dict()
# create an instance of UserWorker from a dict
user_worker_from_dict = UserWorker.from_dict(user_worker_dict)

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