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

NameTypeDescriptionNotes
namestr
descriptionstr[optional]
scopesList[str][optional]

Example

fromplatform_api_python_client.models.create_service_account_requestimportCreateServiceAccountRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateServiceAccountRequest from a JSON stringcreate_service_account_request_instance=CreateServiceAccountRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateServiceAccountRequest.to_json())
# convert the object into a dictcreate_service_account_request_dict=create_service_account_request_instance.to_dict()
# create an instance of CreateServiceAccountRequest from a dictcreate_service_account_request_from_dict=CreateServiceAccountRequest.from_dict(create_service_account_request_dict)

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