From 0ffd8afe74b74710e4a5ae79792443fe86f4642e Mon Sep 17 00:00:00 2001 From: Imtiaz Uddin Date: Mon, 26 May 2025 14:14:18 +0600 Subject: [PATCH] Add `Required` field in ListInputForm Signed-off-by: Imtiaz Uddin --- types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types.go b/types.go index 76609bb..3e47ddd 100644 --- a/types.go +++ b/types.go @@ -781,6 +781,7 @@ type ListInputForm struct { Element InputElement `json:"element"` Label *Label `json:"label"` IndividualItemDisabilityCheck string `json:"individualItemDisabilityCheck,omitempty"` + Required bool `json:"required,omitempty"` } type MultiStepForm struct {