UNPKG

@lob/lob-typescript-sdk

Version:
76 lines (75 loc) 2.12 kB
/** * Lob * The Lob API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and uses HTTP response codes to indicate any API errors. <p> Looking for our [previous documentation](https://lob.github.io/legacy-docs/)? * * The version of the OpenAPI document: 1.3.0 * Contact: lob-openapi@lob.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Customize and place a QR code on the creative at the required position. * @export * @class QrCode */ export declare class QrCode { constructor(input?: any); /** * Sets how a QR code is being positioned in the document. * @type {string} * @memberof QrCode */ "position": QrCodePositionEnum; /** * Vertical distance(in inches) to place QR code from the top. * @type {string} * @memberof QrCode */ "top"?: string; /** * Horizonal distance(in inches) to place QR code from the right. * @type {string} * @memberof QrCode */ "right"?: string; /** * Horizonal distance(in inches) to place QR code from the left. * @type {string} * @memberof QrCode */ "left"?: string; /** * Vertical distance(in inches) to place QR code from the bottom. * @type {string} * @memberof QrCode */ "bottom"?: string; /** * The url to redirect the user when a QR code is scanned. The url must start with `https://` * @type {string} * @memberof QrCode */ "redirect_url": string; /** * The size(in inches) of the QR code. All QR codes are generated as a square. * @type {string} * @memberof QrCode */ "width": string; toJSON(): {}; } /** * @export * @enum {string} */ export declare enum QrCodePositionEnum { Fixed = "fixed", Relative = "relative" } /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */