/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Request body for `PATCH /auth/clients/{authorizedClientId}`. * @export * @interface UpdateAuthorizedClientRequest */ export interface UpdateAuthorizedClientRequest { /** * New user-editable label. Pass null to clear. * @type {string} * @memberof UpdateAuthorizedClientRequest */ label?: string | null; } export declare function UpdateAuthorizedClientRequestFromJSON(json: any): UpdateAuthorizedClientRequest; export declare function UpdateAuthorizedClientRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAuthorizedClientRequest; export declare function UpdateAuthorizedClientRequestToJSON(value?: UpdateAuthorizedClientRequest | null): any;