import { ServiceTimeSlot } from '../time-slots/service-time-slot'; import SObject, { CustomSFSObject } from './s-object'; export default class Service extends SObject { readonly name: string; readonly timeSlots: ServiceTimeSlot[]; constructor(serviceData: SFService, timeSlots: ServiceTimeSlot[]); isAvailable(): boolean; } interface SFService extends CustomSFSObject { B25__Default_Quantity__c?: number | null; B25__Is_Active__c?: boolean | null; B25__Price__c?: number | null; B25__Service_Type__c?: string | null; } export { SFService };