Skip to content

Commit

Permalink
Change ClientMetadata to *map[string]interface{}
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught committed Oct 13, 2022
1 parent accd954 commit 12cfcb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 21 deletions.
6 changes: 3 additions & 3 deletions management/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ type Client struct {
// 'none' (public client without a client secret),
// 'client_secret_post' (client uses HTTP POST parameters) or
// 'client_secret_basic' (client uses HTTP Basic)
TokenEndpointAuthMethod *string `json:"token_endpoint_auth_method,omitempty"`
ClientMetadata *map[string]string `json:"client_metadata,omitempty"`
Mobile *ClientMobile `json:"mobile,omitempty"`
TokenEndpointAuthMethod *string `json:"token_endpoint_auth_method,omitempty"`
ClientMetadata *map[string]interface{} `json:"client_metadata,omitempty"`
Mobile *ClientMobile `json:"mobile,omitempty"`

// Initiate login uri, must be https and cannot contain a fragment.
InitiateLoginURI *string `json:"initiate_login_uri,omitempty"`
Expand Down
8 changes: 0 additions & 8 deletions management/management.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions management/management.gen_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 12cfcb1

Please sign in to comment.