/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 type { ResourceLink } from './ResourceLink'; import type { ClientDto } from './ClientDto'; /** * * @export * @interface ClientsDto */ export interface ClientsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof ClientsDto */ links: { [key: string]: ResourceLink; }; /** * The clients. * @type {Array} * @memberof ClientsDto */ items: Array; } /** * Check if a given object implements the ClientsDto interface. */ export declare function instanceOfClientsDto(value: any): value is ClientsDto; export declare function ClientsDtoFromJSON(json: any): ClientsDto; export declare function ClientsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ClientsDto; export declare function ClientsDtoToJSON(value?: ClientsDto | null, _ignoreDiscriminator?: boolean): any;