wallee
Version:
TypeScript/JavaScript client for wallee
34 lines (33 loc) • 749 B
TypeScript
import { ManualTaskActionStyle } from "./ManualTaskActionStyle";
declare class ManualTaskAction {
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The action's label.
*/
'label'?: {
[]: 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 };