/** * 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 CreateClientDto */ export interface CreateClientDto { /** * The ID of the client. * @type {string} * @memberof CreateClientDto */ id: string; } /** * Check if a given object implements the CreateClientDto interface. */ export declare function instanceOfCreateClientDto(value: any): value is CreateClientDto; export declare function CreateClientDtoFromJSON(json: any): CreateClientDto; export declare function CreateClientDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): CreateClientDto; export declare function CreateClientDtoToJSON(value?: CreateClientDto | null, _ignoreDiscriminator?: boolean): any;