UNPKG

@lob/lob-typescript-sdk

Version:
75 lines (74 loc) 2.18 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. */ import { CountryExtended } from "./country-extended"; /** * * @export * @class IntlVerificationWritable */ export declare class IntlVerificationWritable { constructor(input?: any); /** * The intended recipient, typically a person\'s or firm\'s name. * @type {string} * @memberof IntlVerificationWritable */ "recipient"?: string | null; /** * The primary delivery line (usually the street address) of the address. * @type {string} * @memberof IntlVerificationWritable */ "primary_line"?: string; /** * The secondary delivery line of the address. This field is typically empty but may contain information if `primary_line` is too long. * @type {string} * @memberof IntlVerificationWritable */ "secondary_line"?: string; /** * * @type {string} * @memberof IntlVerificationWritable */ "city"?: string; /** * The name of the state. * @type {string} * @memberof IntlVerificationWritable */ "state"?: string; /** * The postal code. * @type {string} * @memberof IntlVerificationWritable */ "postal_code"?: string; /** * * @type {CountryExtended} * @memberof IntlVerificationWritable */ "country"?: CountryExtended; /** * The entire address in one string (e.g., \"370 Water St C1N 1C4\"). * @type {string} * @memberof IntlVerificationWritable */ "address"?: string; toJSON(): {}; } /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */