Skip to content

Commit

Permalink
Merge branch 'master' into ON-40446
Browse files Browse the repository at this point in the history
  • Loading branch information
jdawg093 committed May 22, 2024
2 parents 5588cc2 + edb740f commit bcbeee5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 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

- `googleMapsIntegrationKeyId` to `FormsAppBase`
- `approvalGroups` to `ApprovalsFormsApp`

### Removed

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 bcbeee5

Please sign in to comment.