Skip to content

Commit

Permalink
feat: move notification suppression to public schema (box/box-openapi…
Browse files Browse the repository at this point in the history
  • Loading branch information
box-sdk-build committed May 16, 2024
1 parent 69187fe commit a16f858
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "3eadef2", "specHash": "f26f46d", "version": "0.3.1" }
{ "engineHash": "3eadef2", "specHash": "6c3dd22", "version": "0.3.1" }
6 changes: 6 additions & 0 deletions Box.Sdk.Gen/Schemas/SignRequestBase/SignRequestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ public class SignRequestBase {
[JsonPropertyName("template_id")]
public string? TemplateId { get; set; } = default;

/// <summary>
/// Used as an optional system name to appear in the signature log next to the signers who have been assigned an `embed_url_external_id`
/// </summary>
[JsonPropertyName("external_system_name")]
public string? ExternalSystemName { get; set; } = default;

public SignRequestBase() {

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ public class SignRequestCreateSigner {
[JsonPropertyName("signer_group_id")]
public string? SignerGroupId { get; set; } = default;

/// <summary>
/// If true, no emails about the sign request will be sent
/// </summary>
[JsonPropertyName("suppress_notifications")]
public bool? SuppressNotifications { get; set; } = default;

public SignRequestCreateSigner() {

}
Expand Down

0 comments on commit a16f858

Please sign in to comment.