Skip to content

Commit

Permalink
ON-45970 # Added isArchived to Forms
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaxist committed Jan 9, 2025
1 parent 5b164f8 commit 9fad59b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Added

- `isArchived` to Forms

### Added

- `styles` to `FormsAppEnvironment`

## [10.0.0] - 2024-12-11
Expand Down
9 changes: 8 additions & 1 deletion OneBlink.SDK/models/Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public Form(
Guid? pointAddressEnvironmentId = null,
bool? allowGeoscapeAddresses = null,
FormEnableSubmission enableSubmission = null,
bool? disableAutosave = null
bool? disableAutosave = null,
bool? isArchived = null
)
{
if (id.HasValue)
Expand Down Expand Up @@ -155,6 +156,7 @@ public Form(
this.allowGeoscapeAddresses = allowGeoscapeAddresses ?? null;
this.enableSubmission = enableSubmission;
this.disableAutosave = disableAutosave;
this.isArchived = isArchived;
}
public long id
{
Expand Down Expand Up @@ -308,5 +310,10 @@ public bool? disableAutosave
{
get; set;
}
public bool? isArchived
{
get; set;
}

}
}

0 comments on commit 9fad59b

Please sign in to comment.