featherbone-shipengine
Version:
Forked and patched version of the official ShipEngine JavaScript SDK for Node.js
24 lines (23 loc) • 878 B
TypeScript
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export declare type AddressToValidate = PartialAddress;
export declare type PostalCode = string;
export declare type CountryCode = string;
export declare type AddressResidentialIndicator = "unknown" | "yes" | "no";
export declare type ValidateAddressRequestBody = AddressToValidate[];
export interface PartialAddress {
name?: string;
phone?: string;
company_name?: string;
address_line1?: string;
address_line2?: string;
address_line3?: string;
city_locality?: string;
state_province?: string;
postal_code?: PostalCode;
country_code?: CountryCode;
address_residential_indicator?: AddressResidentialIndicator & string;
}