diff --git a/README.md b/README.md index b502a91..67d0ca4 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,9 @@ resp, _ := http.Post( var result struct { Valid bool `json:"valid"` - Message string `json:"message"` + Message string `json:"message,omitempty"` + Type string `json:"type,omitempty"` + Expires *time.Time `json:"expires,omitempty"` } json.NewDecoder(resp.Body).Decode(&result)