Skip to content

Commit

Permalink
ON-37876 # Added approval configuration for email templates
Browse files Browse the repository at this point in the history
  • Loading branch information
mymattcarroll committed Feb 6, 2024
1 parent ec931fe commit da471a2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- `isRetryable` to `FormSubmissionEvent` model
- `approvalCreatedEmailTemplateId`, `clarificationRequestEmailTemplateId`, `approvedEmailTemplateId`, `deniedEmailTemplateId` to `FormApprovalConfiguration` model

## [5.3.0] - 2024-01-18

Expand Down
16 changes: 16 additions & 0 deletions OneBlink.SDK/models/FormApprovalConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,21 @@ public bool? disallowApprovingWhenAwaitingClarification
{
get; set;
}
public long? approvalCreatedEmailTemplateId
{
get; set;
}
public long? clarificationRequestEmailTemplateId
{
get; set;
}
public long? approvedEmailTemplateId
{
get; set;
}
public long? deniedEmailTemplateId
{
get; set;
}
}
}

0 comments on commit da471a2

Please sign in to comment.