channelape-sdk
Version:
A client for interacting with ChannelApe's API
12 lines (11 loc) • 320 B
TypeScript
import OutputFileSettings from './OutputFileSettings';
export default interface ChannelSettings {
allowCreate: boolean;
allowRead: boolean;
allowUpdate: boolean;
allowDelete: boolean;
disableVariants: boolean;
priceType: string;
updateFields: string[];
outputFile?: OutputFileSettings;
}