pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
28 lines (27 loc) • 1.33 kB
TypeScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { AddressTypeOptionEnum } from './addressTypeOptionEnum';
/** Information that locates and identifies a specific address, as defined by postal services. */
export interface PostalAddress {
/** Identifies the nature of the postal address. */
addressType?: AddressTypeOptionEnum;
/** Information that locates and identifies a specific address, as defined by postal services, that is presented in free format text. */
addressLine?: string[];
/** Name of a street or thoroughfare. */
streetName?: string;
/** Number that identifies the position of a building on a street. */
buildingNumber?: string;
/** Identifier consisting of a group of letters and/or numbers that is added to a postal address to assist the sorting of mail. */
postCode?: string;
/** Name of a built-up area, with defined boundaries, and a local government. */
townName?: string;
/** Identifies a subdivision of a country such as state, region, county. */
countrySubDivision?: string;
/** Nation with its own government. */
country: string;
}
export declare const postalAddressSchema: Schema<PostalAddress>;