diff options
| author | mo khan <mo@mokhan.ca> | 2022-05-08 21:02:21 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2022-05-08 21:02:21 -0600 |
| commit | 9a7071121401b92d8171f3891e4c915d1fd31051 (patch) | |
| tree | 724c657f80bbf8d61b3f4ed6df509b027cf82518 | |
| parent | 8e4f69b009e9796a7632e55bee32f16b9109b9a7 (diff) | |
sort keys
| -rw-r--r-- | pkg/dto/client_metadata.go | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/pkg/dto/client_metadata.go b/pkg/dto/client_metadata.go index 5180f00..0c85090 100644 --- a/pkg/dto/client_metadata.go +++ b/pkg/dto/client_metadata.go @@ -1,19 +1,19 @@ package dto type ClientMetadata struct { + ClientName string `json:"client_name"` + ClientUri string `json:"client_uri"` + Contacts []string `json:"contacts"` + GrantTypes []GrantType `json:"grant_types"` + JWKS JsonWebKeySet `json:"jwks"` + JWKSUri string `json:"jwks_uri"` + LogoUri string `json:"logo_uri"` + PolicyUri string `json:"policy_uri"` RedirectUris []string `json:"redirect_uris"` + ResponseTypes []ResponseType `json:"response_types"` + Scope string `json:"scope"` + SoftwareId string `json:"software_id"` + SoftwareVersion string `json:"software_version"` + TermsOfServiceUri string `json:"tos_uri"` TokenEndpointAuthMethod TokenEndpointAuthMethod `json:"token_endpoint_auth_method"` - GrantTypes []GrantType `json:"grant_types"` - ResponseTypes []ResponseType - ClientName string `json:"client_name"` - ClientUri string - LogoUri string `json:"logo_uri"` - Scope string - Contacts []string - TermsOfServiceUri string - PolicyUri string `json:"policy_uri"` - JWKSUri string `json:"jwks_uri"` - JWKS JsonWebKeySet `json:"jwks"` - SoftwareId string - SoftwareVersion string } |
