import { RequestLocationCreateOrUpdate } from './requestLocationCreateOrUpdate'; import { RequestOperationCenterSlaCreateOrUpdate } from './requestOperationCenterSlaCreateOrUpdate'; export interface RequestOperationCenterCreateOrUpdate { status?: boolean; name: string; code?: string; capabilities?: string[]; zone?: string; parentOperationCenter?: string; addressLine1: string; addressLine2?: string; city: string; state: string; country: string; pincode: string; location?: RequestLocationCreateOrUpdate; procurableProducts?: string[]; inventoryLinks?: string[]; gstNumber?: string; virtualOC?: boolean; mappedOC?: string; slas?: RequestOperationCenterSlaCreateOrUpdate[]; excludeFromCityInventory?: boolean; }