import { State } from './state.entity'; export declare class Organization { id: number; name: string; description: string; /** * Organization primary street address. */ addressLine1: string; addressLine2: string; /** * Organization primary city. */ city: string; state: State; postalCode: string; created: Date; createdBy: number; modified: Date; modifiedBy: number; }