/** * 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'; /** * UpdateQrcodeDesignResponse returns the refreshed design after applying edits. * @export * @interface UpdateQrcodeDesignResponse */ export interface UpdateQrcodeDesignResponse { /** * * @type {QrcodeDesign} * @memberof UpdateQrcodeDesignResponse */ qrcodeDesign?: QrcodeDesign; } /** * Check if a given object implements the UpdateQrcodeDesignResponse interface. */ export declare function instanceOfUpdateQrcodeDesignResponse(value: object): value is UpdateQrcodeDesignResponse; export declare function UpdateQrcodeDesignResponseFromJSON(json: any): UpdateQrcodeDesignResponse; export declare function UpdateQrcodeDesignResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateQrcodeDesignResponse; export declare function UpdateQrcodeDesignResponseToJSON(json: any): UpdateQrcodeDesignResponse; export declare function UpdateQrcodeDesignResponseToJSONTyped(value?: UpdateQrcodeDesignResponse | null, ignoreDiscriminator?: boolean): any;