Interface: X12RemitAddress
Decoded N3 + N4 address block attached to a party. lines is the N3
address lines (1-2 entries); city/state/postalCode come from N4.
All fields verbatim - no normalization (no proper-casing, no
postal-code canonicalization).
Example
import type { X12RemitAddress } from "@cosyte/x12";
declare const a: X12RemitAddress;
a.lines[0]; // "123 PAYER WAY"
a.city; // "ANYTOWN"
a.state; // "OH"
a.postalCode; // "44113"
Properties
city
readonlycity:string|undefined
countryCode
readonlycountryCode:string|undefined
lines
readonlylines: readonlystring[]
postalCode
readonlypostalCode:string|undefined
state
readonlystate:string|undefined