An authentication server
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

12 linhas
321 B

5 anos atrás
  1. require "json"
  2. class Product
  3. JSON.mapping(
  4. price: {type: Float64, nilable: true},
  5. tax_rate: {type: Float64, nilable: true},
  6. name: {type: String, nilable: true},
  7. description: {type: String, nilable: true},
  8. pic_url: {type: String, nilable: true},
  9. id: Int64,
  10. )
  11. end