Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. new_billing_method := `{
  2. "address": "This is the new one",
  3. "city": "el segundo",
  4. "country": "United States",
  5. "creditCardCVV": "123",
  6. "creditCardMonth": 5,
  7. "creditCardNumber": 4242424242424242,
  8. "creditCardYear": 2024,
  9. "firstName": "z",
  10. "lastName": "t",
  11. "state": "California",
  12. "zip": "90000"
  13. }`
  14. var m map[string]interface{}
  15. err := json.Unmarshal([]byte(new_billing_method), &m)
  16. if err != nil {
  17. panic(err)
  18. }
  19. // m is the new map[string]interface{}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement