Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 557 Bytes

BillPaid.md

File metadata and controls

24 lines (18 loc) · 557 Bytes

Propertyware::BillPaid

Properties

Name Type Description Notes
bill_date Date Bill date. [optional]
bill_number Integer Bill number. [optional]
bill_splits Array<SplitPaid> List of bill splits. [optional]
id Integer Unique identifier. [optional]

Example

require 'propertyware'

instance = Propertyware::BillPaid.new(
  bill_date: null,
  bill_number: null,
  bill_splits: null,
  id: null
)