Merge pull request #26 from zakjan/regr-json-tags

Add JSON tags to RegistrationResource as used in official client
This commit is contained in:
xenolf 2015-11-14 17:30:37 +01:00
commit 54df9812c7

View file

@ -45,10 +45,10 @@ type Registration struct {
// RegistrationResource represents all important informations about a registration
// of which the client needs to keep track itself.
type RegistrationResource struct {
Body Registration
URI string
NewAuthzURL string
TosURL string
Body Registration `json:"body,omitempty"`
URI string `json:"uri,omitempty"`
NewAuthzURL string `json:"new_authzr_uri,omitempty"`
TosURL string `json:"terms_of_service,omitempty"`
}
type authorizationResource struct {