Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/main/java/com/kintone/client/model/app/ProcessAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@ public class ProcessAction {

/** The branch criteria of the action. */
private String filterCond;

/** The type of the Action. */
private ProcessActionType type;

/** The executable users for SECONDARY type actions. */
private ProcessExecutableUser executableUser;
}
11 changes: 11 additions & 0 deletions src/main/java/com/kintone/client/model/app/ProcessActionType.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.kintone.client.model.app;

/** The type of Action in Process Management Settings. */
public enum ProcessActionType {

/** Only assignees can execute this action. */
PRIMARY,

/** Users other than assignees can also execute this action. */
SECONDARY
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.kintone.client.model.app;

import java.util.List;
import lombok.Data;

/** Executable user settings for Actions with SECONDARY type. */
@Data
public class ProcessExecutableUser {

/** A list of the executable users. */
private List<ProcessEntity> entities;
}