-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ON-44920 # Added nodes to approval steps
- Loading branch information
1 parent
498b8d5
commit e66e8a0
Showing
4 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
using System.Collections.Generic; | ||
namespace OneBlink.SDK.Model | ||
{ | ||
public class FormApprovalFlowInstanceStep : FormApprovalFlowStepBase | ||
public class FormApprovalFlowInstanceStepNode : FormApprovalFlowStepBase | ||
{ | ||
public bool isSkipped | ||
{ | ||
get; set; | ||
} | ||
} | ||
|
||
public class FormApprovalFlowInstanceStep : FormApprovalFlowInstanceStepNode | ||
{ | ||
public string type | ||
{ | ||
get; set; | ||
} | ||
|
||
public long? clarificationRequestEmailTemplateId | ||
{ | ||
get; set; | ||
} | ||
|
||
public List<FormApprovalStepNode> nodes | ||
{ | ||
get; set; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,5 @@ public long? approvalFormId | |
{ | ||
get; set; | ||
} | ||
public long? clarificationRequestEmailTemplateId | ||
{ | ||
get; set; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters