/** * 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. */ import { AuthorizedClient } from './AuthorizedClient'; /** * Response from `GET /auth/clients`. * @export * @interface AuthorizedClientList */ export interface AuthorizedClientList { /** * * @type {Array} * @memberof AuthorizedClientList */ data: Array; } export declare function AuthorizedClientListFromJSON(json: any): AuthorizedClientList; export declare function AuthorizedClientListFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthorizedClientList; export declare function AuthorizedClientListToJSON(value?: AuthorizedClientList | null): any;