Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

UpdateServiceAccountRequest

Properties

Name Type Description Notes
name str [optional]
description str [optional]
scopes List[str] [optional]

Example

from platform_api_python_client.models.update_service_account_request import UpdateServiceAccountRequest

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

# convert the object into a dict
update_service_account_request_dict = update_service_account_request_instance.to_dict()
# create an instance of UpdateServiceAccountRequest from a dict
update_service_account_request_from_dict = UpdateServiceAccountRequest.from_dict(update_service_account_request_dict)

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