@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
11 lines (10 loc) • 452 B
TypeScript
export declare class OrganizationSuppressionList {
/** SuppressionList unique key used for adding and removing values (e.g. email address)
* @pattern ^[A-Za-z0-9-_]{1,16}$
*/
key: string;
/** SuppressionList User Friendly Name */
name: object;
/** Stories that this list should suppress contact events (e.g. send emails). None specified will apply this list to all organization stories. */
storyKeys: Array<string>;
}