Skip to content

Commit

Permalink
Merge pull request #311 from oneblink/ON-40491
Browse files Browse the repository at this point in the history
ON-40491 # added `approvalGroups` to `ApprovalsFormsApp`
  • Loading branch information
kizaonline authored May 22, 2024
2 parents a80e017 + 5daaf01 commit edb740f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Added

- `approvalGroups` to `ApprovalsFormsApp`

## [5.6.4] - 2024-05-20

### Added
Expand Down
40 changes: 23 additions & 17 deletions OneBlink.SDK/models/ApprovalsFormsApp.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
namespace OneBlink.SDK.Model
{
public class ApprovalsFormsApp : FormsAppBase
{
public ApprovalsFormsApp()
{
this.type = "APPROVALS";
}
public FormsAppStylesBase styles
{
get; set;
}
public override string type
{
get;
}
}
using System.Collections.Generic;

namespace OneBlink.SDK.Model
{
public class ApprovalsFormsApp : FormsAppBase
{
public ApprovalsFormsApp()
{
this.type = "APPROVALS";
}
public FormsAppStylesBase styles
{
get; set;
}
public override string type
{
get;
}
public List<string> approvalGroups
{
get; set;
}
}
}

0 comments on commit edb740f

Please sign in to comment.