Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.2 KB

NonOperatingInome.md

File metadata and controls

32 lines (26 loc) · 1.2 KB

Propertyware::NonOperatingInome

Properties

Name Type Description Notes
cam_recovery_account Boolean Indicates if account is a CAM recovery account. [optional]
discount_account Boolean Indicates if account is a discount account. [optional]
escrow_account Boolean Indicates if account is a escrow account. [optional]
exclude_from1099 Boolean Indicates if account is excluded from Form1099. [optional]
exclude_from_pay_in_full Boolean Indicates if account is excluded from paying in full. [optional]
exclude_late_fee Boolean Indicates if excluding from late fees. [optional]
rent_account Boolean Indicates if account is a rent account. [optional]
tax_account Boolean Indicates if account is a tax account. [optional]

Example

require 'propertyware'

instance = Propertyware::NonOperatingInome.new(
  cam_recovery_account: false,
  discount_account: false,
  escrow_account: false,
  exclude_from1099: false,
  exclude_from_pay_in_full: false,
  exclude_late_fee: false,
  rent_account: false,
  tax_account: false
)