Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

CreateUserWorkerRequest

Properties

Name Type Description Notes
name str
description str [optional]
user_code str base64 encoded user code
state str [optional]

Example

from sensorbucket.models.create_user_worker_request import CreateUserWorkerRequest

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

# convert the object into a dict
create_user_worker_request_dict = create_user_worker_request_instance.to_dict()
# create an instance of CreateUserWorkerRequest from a dict
create_user_worker_request_from_dict = CreateUserWorkerRequest.from_dict(create_user_worker_request_dict)

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