@lob/lob-typescript-sdk
Version:
Lob API wrapper
76 lines (75 loc) • 2.39 kB
TypeScript
/**
* 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 IntlSuggestions
*/
export declare class IntlSuggestions {
constructor(input?: any);
/**
* The primary number range of the address that identifies a building at street level.
* @type {string}
* @memberof IntlSuggestions
*/
"primary_number_range": string;
/**
* The primary delivery line (usually the street address) of the address. Combination of the following applicable `components` (primary number & secondary information may be missing or inaccurate): * `primary_number` * `street_predirection` * `street_name` * `street_suffix` * `street_postdirection` * `secondary_designator` * `secondary_number` * `pmb_designator` * `pmb_number`
* @type {string}
* @memberof IntlSuggestions
*/
"primary_line": string;
/**
*
* @type {string}
* @memberof IntlSuggestions
*/
"city": string;
/**
* The [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) two letter code for the state.
* @type {string}
* @memberof IntlSuggestions
*/
"state": string;
/**
*
* @type {CountryExtended}
* @memberof IntlSuggestions
*/
"country": CountryExtended;
/**
* A 5-digit zip code. Left empty if a test key is used.
* @type {string}
* @memberof IntlSuggestions
*/
"zip_code": string;
/**
* Value is resource type.
* @type {string}
* @memberof IntlSuggestions
*/
"object"?: IntlSuggestionsObjectEnum;
toJSON(): {};
}
/**
* @export
* @enum {string}
*/
export declare enum IntlSuggestionsObjectEnum {
IntlAutocompletion = "intl_autocompletion"
}
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/