Skip to content

Commit

Permalink
ON-36316 # Added submissionTitle to Form class
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanButton committed Nov 16, 2023
1 parent 762081b commit c60633b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
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

- `GeneratePdfFromSubmissionData` function to `PdfClient` class
- `submissionTitle` to `Form` class

## 5.1.1 (2023-11-01)

Expand Down
8 changes: 7 additions & 1 deletion OneBlink.SDK/models/Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public Form(
FormExternalIdGeneration externalIdGenerationOnSubmit = null,
FormPersonalisation personalisation = null,
FormApprovalConfiguration approvalConfiguration = null,
string submissionTitle = null
string submissionTitle = null,
bool continueWithAutosave = false
)
{
if (id.HasValue)
Expand Down Expand Up @@ -136,6 +137,7 @@ public Form(
this.personalisation = personalisation;
this.approvalConfiguration = approvalConfiguration;
this.submissionTitle = submissionTitle;
this.continueWithAutosave = continueWithAutosave;
}
public long id
{
Expand Down Expand Up @@ -261,5 +263,9 @@ public string submissionTitle
{
get; set;
}
public bool continueWithAutosave
{
get; set;
}
}
}

0 comments on commit c60633b

Please sign in to comment.