From cb4c54b71991425bef0b4ce50685ef5d6ab59aad Mon Sep 17 00:00:00 2001 From: jdawg093 <49189518+jdawg093@users.noreply.github.com> Date: Thu, 24 Oct 2024 15:07:54 +1100 Subject: [PATCH] ON-44406 # Added `startingAutoIncrement` to `FormExternalIdGenerationConfiguration` --- CHANGELOG.md | 4 ++++ OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29452cfb..a7992007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ### Added +- `startingAutoIncrement` to `FormExternalIdGenerationConfiguration` + +### Added + - `isCloningScheduledTasks` to `FormsAppEnvironmentCloneOptions` ## [8.1.0] - 2024-10-09 diff --git a/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs b/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs index d6a31bb8..afa3b0bc 100644 --- a/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs +++ b/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs @@ -8,6 +8,10 @@ public List receiptComponents { get; set; } + public long? startingAutoIncrement + { + get; set; + } } } \ No newline at end of file