@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
18 lines (17 loc) • 394 B
TypeScript
export declare class EpisodeConfiguration {
constructor(episode: any);
/**
* Episode key
* @pattern ^[A-Za-z0-9-_]{1,30}$
* */
key: string;
/** Episode friendly name*/
name: string;
/** Description for this episode */
description?: string;
/**
Should this episode be active and available.
@default true
*/
isEnabled: boolean;
}