ワークフロー履歴の型定義

interface WorkflowHistory {
    assignment?: Assignment[];
    completionDate?: DateTimeValue;
    nodeName?: string;
    nodeOrder?: number;
    nodeStatus?: SelectValue;
    processBy?: { name: string; oid: string };
    taskResult?: string;
}

Properties

assignment?: Assignment[]

ユーザータスクの割当状態(ユーザタスクの場合)

completionDate?: DateTimeValue

完了日

nodeName?: string

処理名

nodeOrder?: number

ノード順

nodeStatus?: SelectValue

ノード状態

processBy?: { name: string; oid: string }

処理実施者

Type declaration

  • name: string

    ユーザ名

  • oid: string

    ユーザID

taskResult?: string

タスク結果