Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

CreateServiceAccountRequest

Properties

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

Example

from platform_api_python_client.models.create_service_account_request import CreateServiceAccountRequest

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

# convert the object into a dict
create_service_account_request_dict = create_service_account_request_instance.to_dict()
# create an instance of CreateServiceAccountRequest from a dict
create_service_account_request_from_dict = CreateServiceAccountRequest.from_dict(create_service_account_request_dict)

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