From 49b01ca0212f5de4e97e5e9990f8227f5ba69dfa Mon Sep 17 00:00:00 2001 From: CARBONNEAUX Mathieu Date: Tue, 3 Dec 2024 18:15:03 +0000 Subject: [PATCH] change GetComponentsParams provider to type cf: https://www.keycloak.org/docs-api/latest/rest-api/index.html#_component --- models.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.go b/models.go index 4d526aeb..c5cc874b 100644 --- a/models.go +++ b/models.go @@ -305,7 +305,7 @@ type GetUsersParams struct { // GetComponentsParams represents the optional parameters for getting components type GetComponentsParams struct { Name *string `json:"name,omitempty"` - ProviderType *string `json:"provider,omitempty"` + ProviderType *string `json:"type,omitempty"` ParentID *string `json:"parent,omitempty"` }