UNPKG

@lob/lob-typescript-sdk

Version:
69 lines (68 loc) 1.69 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. */ /** * * @export * @class EventType */ export declare class EventType { constructor(input?: any); /** * * @type {string} * @memberof EventType */ "id": string; /** * Value is `true` if the event type is enabled in both the test and live environments. * @type {boolean} * @memberof EventType */ "enabled_for_test": boolean; /** * * @type {string} * @memberof EventType */ "resource": EventTypeResourceEnum; /** * Value is resource type. * @type {string} * @memberof EventType */ "object": EventTypeObjectEnum; toJSON(): {}; } /** * @export * @enum {string} */ export declare enum EventTypeResourceEnum { Postcards = "postcards", SelfMailers = "self mailers", Letters = "letters", Checks = "checks", Addresses = "addresses", BankAccounts = "bank accounts" } /** * @export * @enum {string} */ export declare enum EventTypeObjectEnum { EventType = "event_type" } /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */