UpdateServiceAccountRequest
| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| scopes |
List[str] |
|
[optional] |
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]