Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 971 Bytes

File metadata and controls

30 lines (21 loc) · 971 Bytes

UserAccountRequest

Account adding/removing operations

Properties

Name Type Description Notes
pk int

Example

from authentik_client.models.user_account_request import UserAccountRequest

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

# convert the object into a dict
user_account_request_dict = user_account_request_instance.to_dict()
# create an instance of UserAccountRequest from a dict
user_account_request_from_dict = UserAccountRequest.from_dict(user_account_request_dict)

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