Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.41 KB

File metadata and controls

34 lines (26 loc) · 1.41 KB

UpdateClientRequest

The request for updating client details.

Properties

Name Type Description Notes
name str The client name. [optional]
description str The client description [optional]
logo str The client logo in base64 format. [optional]
allow_pkce bool Indicates whether PKCE is allowed for the client. [optional]
is_public bool Indicates whether the client is accessible by third-party tenants. [optional]
allowed_origins List[str] The allowed origins for the client. [optional]

Example

from docspace_api_sdk.models.update_client_request import UpdateClientRequest

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

# convert the object into a dict
update_client_request_dict = update_client_request_instance.to_dict()
# create an instance of UpdateClientRequest from a dict
update_client_request_from_dict = UpdateClientRequest.from_dict(update_client_request_dict)

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