/** * 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'; /** * * @export * @interface ClientDto */ export interface ClientDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof ClientDto */ links: { [key: string]: ResourceLink; }; /** * The client id. * @type {string} * @memberof ClientDto */ id: string; /** * The client secret. * @type {string} * @memberof ClientDto */ secret: string; /** * The client name. * @type {string} * @memberof ClientDto */ name: string; /** * The role of the client. * @type {string} * @memberof ClientDto */ role?: string | null; /** * The number of allowed api calls per month for this client. * @type {number} * @memberof ClientDto */ apiCallsLimit: number; /** * The number of allowed api traffic bytes per month for this client. * @type {number} * @memberof ClientDto */ apiTrafficLimit: number; /** * True to allow anonymous access without an access token for this client. * @type {boolean} * @memberof ClientDto */ allowAnonymous: boolean; } /** * Check if a given object implements the ClientDto interface. */ export declare function instanceOfClientDto(value: any): value is ClientDto; export declare function ClientDtoFromJSON(json: any): ClientDto; export declare function ClientDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ClientDto; export declare function ClientDtoToJSON(value?: ClientDto | null, _ignoreDiscriminator?: boolean): any;