From dddd69d4bc142109bb41ce8ee357244b566c12fd Mon Sep 17 00:00:00 2001 From: Kyle Hiller Date: Mon, 6 May 2024 18:06:27 -0400 Subject: [PATCH] fixes scim config authentication json marshalling --- access_application.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/access_application.go b/access_application.go index 27f0c3f91950..b99f863f929b 100644 --- a/access_application.go +++ b/access_application.go @@ -121,6 +121,10 @@ func (a *AccessApplicationScimAuthenticationJson) UnmarshalJSON(buf []byte) erro return json.Unmarshal(buf, a.Value) } +func (a *AccessApplicationScimAuthenticationJson) MarshalJSON() ([]byte, error) { + return json.Marshal(a.Value) +} + type AccessApplicationScimAuthentication interface { isScimAuthentication() }