/** * 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'; /** * GetQrcodeDesignResponse returns the design definition hydrated with computed fields. * @export * @interface GetQrcodeDesignResponse */ export interface GetQrcodeDesignResponse { /** * * @type {QrcodeDesign} * @memberof GetQrcodeDesignResponse */ qrcodeDesign?: QrcodeDesign; } /** * Check if a given object implements the GetQrcodeDesignResponse interface. */ export declare function instanceOfGetQrcodeDesignResponse(value: object): value is GetQrcodeDesignResponse; export declare function GetQrcodeDesignResponseFromJSON(json: any): GetQrcodeDesignResponse; export declare function GetQrcodeDesignResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQrcodeDesignResponse; export declare function GetQrcodeDesignResponseToJSON(json: any): GetQrcodeDesignResponse; export declare function GetQrcodeDesignResponseToJSONTyped(value?: GetQrcodeDesignResponse | null, ignoreDiscriminator?: boolean): any;