Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

DeviceUserRequest

Properties

Name Type Description Notes
id str
username str [optional]
name str [optional]
home str [optional]

Example

from authentik_client.models.device_user_request import DeviceUserRequest

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

# convert the object into a dict
device_user_request_dict = device_user_request_instance.to_dict()
# create an instance of DeviceUserRequest from a dict
device_user_request_from_dict = DeviceUserRequest.from_dict(device_user_request_dict)

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