/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { QrcodeDesign } from './QrcodeDesign'; /** * PublicCreateQrcodeDesignResponse echoes the newly created design with generated metadata. * @export * @interface PublicCreateQrcodeDesignResponse */ export interface PublicCreateQrcodeDesignResponse { /** * * @type {QrcodeDesign} * @memberof PublicCreateQrcodeDesignResponse */ qrcodeDesign?: QrcodeDesign; } /** * Check if a given object implements the PublicCreateQrcodeDesignResponse interface. */ export declare function instanceOfPublicCreateQrcodeDesignResponse(value: object): value is PublicCreateQrcodeDesignResponse; export declare function PublicCreateQrcodeDesignResponseFromJSON(json: any): PublicCreateQrcodeDesignResponse; export declare function PublicCreateQrcodeDesignResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicCreateQrcodeDesignResponse; export declare function PublicCreateQrcodeDesignResponseToJSON(json: any): PublicCreateQrcodeDesignResponse; export declare function PublicCreateQrcodeDesignResponseToJSONTyped(value?: PublicCreateQrcodeDesignResponse | null, ignoreDiscriminator?: boolean): any;