channelape-sdk
Version:
A client for interacting with ChannelApe's API
11 lines (10 loc) • 358 B
TypeScript
import ChannelApeApiError from '../../../src/model/ChannelApeApiError';
import LocationSLAOperatingDay from './LocationSLAOperatingDay';
export default interface LocationSLA {
createdAt: Date;
fulfillmentSLAHours?: string;
locationId: string;
operatingDays: LocationSLAOperatingDay[];
updatedAt: Date;
errors: ChannelApeApiError[];
}