Add omitempty tags

This commit is contained in:
Yuval Marcus 2024-04-30 17:24:41 -04:00
parent 24d43f538e
commit 68e86f881b

View file

@ -737,8 +737,8 @@ type RefreshTokenRequest struct {
Scopes oidc.SpaceDelimitedArray `schema:"scope"`
ClientID string `schema:"client_id"`
ClientSecret string `schema:"client_secret"`
ClientAssertion string `schema:"client_assertion"`
ClientAssertionType string `schema:"client_assertion_type"`
ClientAssertion string `schema:"client_assertion,omitempty"`
ClientAssertionType string `schema:"client_assertion_type,omitempty"`
GrantType oidc.GrantType `schema:"grant_type"`
}