/** * 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. */ /** * * @export * @interface UpdateClientDto */ export interface UpdateClientDto { /** * The new display name of the client. * @type {string} * @memberof UpdateClientDto */ name?: string | null; /** * The role of the client. * @type {string} * @memberof UpdateClientDto */ role?: string | null; /** * True to allow anonymous access without an access token for this client. * @type {boolean} * @memberof UpdateClientDto */ allowAnonymous?: boolean | null; /** * The number of allowed api calls per month for this client. * @type {number} * @memberof UpdateClientDto */ apiCallsLimit?: number | null; /** * The number of allowed api traffic bytes per month for this client. * @type {number} * @memberof UpdateClientDto */ apiTrafficLimit?: number | null; } /** * Check if a given object implements the UpdateClientDto interface. */ export declare function instanceOfUpdateClientDto(value: any): value is UpdateClientDto; export declare function UpdateClientDtoFromJSON(json: any): UpdateClientDto; export declare function UpdateClientDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateClientDto; export declare function UpdateClientDtoToJSON(value?: UpdateClientDto | null, _ignoreDiscriminator?: boolean): any;