Guest User

Untitled

a guest
Jul 20th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. @order = {
  2. :id => "somestringid",
  3. :user_id => "someotherstringid",
  4. :amount => 19.99,
  5. :metadata => [
  6. {
  7. :type => :shipping_data,
  8. :address => "line 1 of address, line 2 of address, city, state, pincode"
  9. },
  10. {
  11. :type => :payment,
  12. :stripe_customer_id => "somestringid",
  13. :stripe_card_id => "someotherstringid"
  14. },
  15. {
  16. :type => :contact,
  17. :email => "someone@example.com",
  18. :phone => "1231231231"
  19. }
  20. ]
  21. }
  22.  
  23. {
  24. "id": "somestringid",
  25. "user_id": "someotherstringid",
  26. "amount": 19.99,
  27. "metadata": [
  28. {
  29. "type": "shipping_data",
  30. "address": "line 1 of address, line 2 of address, city, state, pincode"
  31. },
  32. {
  33. "type": "payment",
  34. "stripe_customer_id": "somestringid",
  35. "stripe_card_id": "someotherstringid"
  36. },
  37. {
  38. "type": "contact",
  39. "email": "someone@example.com",
  40. "phone": "1231231231"
  41. }
  42. ]
  43. }
Add Comment
Please, Sign In to add comment