Skip to main content
Version: v0.0.2

Interface: X12ClaimAddress

Decoded N3 + N4 address block attached to an entity. Same shape as the 835's address (intentional - symmetry across helpers). All fields verbatim, no normalization.

Example

import type { X12ClaimAddress } from "@cosyte/x12";
declare const a: X12ClaimAddress;
a.lines[0]; // "123 PROVIDER WAY"
a.city; // "CLEVELAND"
a.state; // "OH"
a.postalCode; // "44113"

Properties

city

readonly city: string | undefined


countryCode

readonly countryCode: string | undefined


lines

readonly lines: readonly string[]


postalCode

readonly postalCode: string | undefined


state

readonly state: string | undefined