Skip to main content
Version: v0.0.2

Interface: X12EligibilityAddress

A postal address (N3 + N4) attached to a subscriber / dependent name.

Example

import type { X12EligibilityAddress } from "@cosyte/x12";
declare const a: X12EligibilityAddress;
a.lines[0]; // "123 MAIN ST"
a.city; // "ANYTOWN"
a.state; // "CA"
a.postalCode; // "90001"

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