From 8f8cdf1e9dc62bf9f4e805dfa2a81cd8018c570c Mon Sep 17 00:00:00 2001 From: "Michael \"Miguel\" Alves" <127232498+michael-picpay@users.noreply.github.com> Date: Tue, 5 Nov 2024 06:43:44 -0300 Subject: [PATCH] adding client template fields (#487) * adding CLient template fields * revert removing import --- models.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/models.go b/models.go index eb42c137..205d811e 100644 --- a/models.go +++ b/models.go @@ -464,6 +464,7 @@ type Client struct { BearerOnly *bool `json:"bearerOnly,omitempty"` ClientAuthenticatorType *string `json:"clientAuthenticatorType,omitempty"` ClientID *string `json:"clientId,omitempty"` + ClientTemplate *string `json:"clientTemplate,omitempty"` ConsentRequired *bool `json:"consentRequired,omitempty"` DefaultClientScopes *[]string `json:"defaultClientScopes,omitempty"` DefaultRoles *[]string `json:"defaultRoles,omitempty"` @@ -490,6 +491,9 @@ type Client struct { ServiceAccountsEnabled *bool `json:"serviceAccountsEnabled,omitempty"` StandardFlowEnabled *bool `json:"standardFlowEnabled,omitempty"` SurrogateAuthRequired *bool `json:"surrogateAuthRequired,omitempty"` + UseTemplateConfig *bool `json:"useTemplateConfig,omitempty"` + UseTemplateMappers *bool `json:"useTemplateMappers,omitempty"` + UseTemplateScope *bool `json:"useTemplateScope,omitempty"` WebOrigins *[]string `json:"webOrigins,omitempty"` }