From a16f858a201aa9c0f44daafcd51aa6c0c73d78a5 Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Thu, 16 May 2024 06:15:22 -0700 Subject: [PATCH] feat: move notification suppression to public schema (box/box-openapi#425) --- .codegen.json | 2 +- Box.Sdk.Gen/Schemas/SignRequestBase/SignRequestBase.cs | 6 ++++++ .../SignRequestCreateSigner/SignRequestCreateSigner.cs | 6 ++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.codegen.json b/.codegen.json index 22250871..0a964106 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "3eadef2", "specHash": "f26f46d", "version": "0.3.1" } +{ "engineHash": "3eadef2", "specHash": "6c3dd22", "version": "0.3.1" } diff --git a/Box.Sdk.Gen/Schemas/SignRequestBase/SignRequestBase.cs b/Box.Sdk.Gen/Schemas/SignRequestBase/SignRequestBase.cs index 4e798b31..953d73ad 100644 --- a/Box.Sdk.Gen/Schemas/SignRequestBase/SignRequestBase.cs +++ b/Box.Sdk.Gen/Schemas/SignRequestBase/SignRequestBase.cs @@ -85,6 +85,12 @@ public class SignRequestBase { [JsonPropertyName("template_id")] public string? TemplateId { get; set; } = default; + /// + /// 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` + /// + [JsonPropertyName("external_system_name")] + public string? ExternalSystemName { get; set; } = default; + public SignRequestBase() { } diff --git a/Box.Sdk.Gen/Schemas/SignRequestCreateSigner/SignRequestCreateSigner.cs b/Box.Sdk.Gen/Schemas/SignRequestCreateSigner/SignRequestCreateSigner.cs index c7552720..21ba5397 100644 --- a/Box.Sdk.Gen/Schemas/SignRequestCreateSigner/SignRequestCreateSigner.cs +++ b/Box.Sdk.Gen/Schemas/SignRequestCreateSigner/SignRequestCreateSigner.cs @@ -94,6 +94,12 @@ public class SignRequestCreateSigner { [JsonPropertyName("signer_group_id")] public string? SignerGroupId { get; set; } = default; + /// + /// If true, no emails about the sign request will be sent + /// + [JsonPropertyName("suppress_notifications")] + public bool? SuppressNotifications { get; set; } = default; + public SignRequestCreateSigner() { }