-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ON-36307 # Add
GeneratePdfFromSubmissionData
function to `PdfClient…
…` class
- Loading branch information
1 parent
874aa03
commit a33facf
Showing
5 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-dotnettools.csdevkit", | ||
"ms-dotnettools.csharp", | ||
"ms-dotnettools.vscodeintellicode-csharp", | ||
"MS-CST-E.vscode-devskim" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
OneBlink.SDK/models/GeneratePDFFromSubmissionDataRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#pragma warning disable IDE1006 // Naming is dictated by OneBlink API | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace OneBlink.SDK.Model | ||
{ | ||
public class GeneratePDFFromSubmissionDataRequest<T> | ||
{ | ||
public FormSubmission<T> submissionData | ||
{ | ||
get; set; | ||
} | ||
public long formsAppId | ||
{ | ||
get; set; | ||
} | ||
public List<string> excludedElementIds | ||
{ | ||
get; set; | ||
} | ||
public bool? usePagesAsBreaks | ||
{ | ||
get; set; | ||
} | ||
public List<string> excludedCSSClasses | ||
{ | ||
get; set; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters