import { GeoPointInterface, HoursOfOperationInterface, SnapshotInterface } from './account-group.interface'; export interface NapUpdateOperationInterface { companyName?: string; address?: string; city?: string; state?: string; zip?: string; country?: string; website?: string; workNumber?: string[]; callTrackingNumber?: string[]; location?: GeoPointInterface; timezone?: string; } export interface SnapshotsUpdateOperationInterface { snapshots?: SnapshotInterface[]; } export interface HoursOfOperationUpdateOperationInterface { hoursOfOperation?: HoursOfOperationInterface[]; }