import { Attr } from 'ts-framework' export class AddressResponseDTO { @Attr({ type: String, optional: true }) id: string @Attr({ type: String }) country: string @Attr({ type: String }) state: string @Attr({ type: String }) city: string @Attr({ type: String }) addressLine1: string @Attr({ type: String }) addressLine2: string @Attr({ type: String }) postalCode: string @Attr({ type: String, optional: true }) accountId: string }