UNPKG

wallee

Version:
34 lines (33 loc) 749 B
import { ManualTaskActionStyle } from "./ManualTaskActionStyle"; declare class ManualTaskAction { /** * A unique identifier for the object. */ 'id'?: number; /** * The action's label. */ 'label'?: { [key: string]: string; }; /** * The action's style. */ 'style'?: ManualTaskActionStyle; /** * The type of manual tasks this action belongs to. */ 'taskType'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { ManualTaskAction };