@arkasuryawan/gp-interfaces
Version:
Geonet Properties Data Interfaces
13 lines (12 loc) • 348 B
TypeScript
import { AddressInterface, AuditInterface } from "../interfaces";
export interface OfficesInterface extends AuditInterface {
legalName?: string;
name?: string;
status?: "Active" | "Archived";
externalId?: string;
address?: AddressInterface[];
website?: string;
email?: string;
phone?: string;
phone2?: string;
}