UNPKG

@lob/lob-typescript-sdk

Version:
51 lines (50 loc) 1.43 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. */ /** * Bulk error properties * @export * @class BulkErrorProperties */ export declare class BulkErrorProperties { constructor(input?: any); /** * A human-readable message with more details about the error * @type {string} * @memberof BulkErrorProperties */ "message"?: string; /** * A conventional HTTP status code. * @type {number} * @memberof BulkErrorProperties */ "status_code"?: BulkErrorPropertiesStatusCodeEnum; toJSON(): {}; } /** * @export * @enum {string} */ export declare enum BulkErrorPropertiesStatusCodeEnum { NUMBER_401 = 401, NUMBER_403 = 403, NUMBER_404 = 404, NUMBER_413 = 413, NUMBER_422 = 422, NUMBER_429 = 429, NUMBER_500 = 500 } /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */