An authentication server
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
209 B

  1. require "json"
  2. require "./invoice_line"
  3. require "./address"
  4. class Invoice
  5. JSON.mapping(
  6. items: Array(InvoiceLine),
  7. invoicing_address: Address,
  8. delivery_address: Address
  9. )
  10. end