/** * 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. */ /** * - SHAPE_UNSPECIFIED: Shape not specified (defaults to square modules) * - SHAPE_SQUARE: Traditional square modules for QR code data points * - SHAPE_CIRCLE: Circular modules for a rounded visual appearance * @export */ export declare const Shape: { readonly ShapeUnspecified: "SHAPE_UNSPECIFIED"; readonly ShapeSquare: "SHAPE_SQUARE"; readonly ShapeCircle: "SHAPE_CIRCLE"; }; export type Shape = typeof Shape[keyof typeof Shape]; export declare function instanceOfShape(value: any): boolean; export declare function ShapeFromJSON(json: any): Shape; export declare function ShapeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Shape; export declare function ShapeToJSON(value?: Shape | null): any; export declare function ShapeToJSONTyped(value: any, ignoreDiscriminator: boolean): Shape;