Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.31 KB

File metadata and controls

35 lines (26 loc) · 1.31 KB

CreateServiceAccountResponse

Properties

NameTypeDescriptionNotes
workos_idstr
namestr[optional]
descriptionstr[optional]
scopesList[str][optional]
created_atdatetime[optional]
updated_atdatetime[optional]
client_secretstr

Example

fromplatform_api_python_client.models.create_service_account_responseimportCreateServiceAccountResponse# TODO update the JSON string belowjson="{}"# create an instance of CreateServiceAccountResponse from a JSON stringcreate_service_account_response_instance=CreateServiceAccountResponse.from_json(json)
# print the JSON string representation of the objectprint(CreateServiceAccountResponse.to_json())
# convert the object into a dictcreate_service_account_response_dict=create_service_account_response_instance.to_dict()
# create an instance of CreateServiceAccountResponse from a dictcreate_service_account_response_from_dict=CreateServiceAccountResponse.from_dict(create_service_account_response_dict)

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