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