Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

PatchedGoogleEndpointDeviceRequest

Serializer for Endpoint authenticator devices

Properties

Name Type Description Notes
pk UUID [optional]
name str The human-readable name of this device. [optional]

Example

from authentik_client.models.patched_google_endpoint_device_request import PatchedGoogleEndpointDeviceRequest

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

# convert the object into a dict
patched_google_endpoint_device_request_dict = patched_google_endpoint_device_request_instance.to_dict()
# create an instance of PatchedGoogleEndpointDeviceRequest from a dict
patched_google_endpoint_device_request_from_dict = PatchedGoogleEndpointDeviceRequest.from_dict(patched_google_endpoint_device_request_dict)

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