2025-07-02 22:40:35 -03:00
|
|
|
export interface Holder {
|
2025-07-17 13:56:18 -03:00
|
|
|
holderid: number;
|
|
|
|
|
holderName: string;
|
|
|
|
|
dbaName?: string | null;
|
|
|
|
|
holderNumber: string;
|
|
|
|
|
holderType: string;
|
|
|
|
|
uscibMember: boolean;
|
2025-07-28 13:56:04 -03:00
|
|
|
govAgency?: boolean;
|
2025-07-17 13:56:18 -03:00
|
|
|
address1: string;
|
|
|
|
|
address2: string;
|
|
|
|
|
city: string;
|
|
|
|
|
state: string;
|
|
|
|
|
country: string;
|
|
|
|
|
zip: string;
|
2025-07-02 22:40:35 -03:00
|
|
|
}
|