Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.17 KB

PaymentTerm.md

File metadata and controls

27 lines (20 loc) · 1.17 KB

DearInventoryRuby::PaymentTerm

Properties

Name Type Description Notes
id String Unique Payment Term ID [optional]
name String Name of Payment Term
duration String Minimum Payment Term duration in days [optional]
method String Method of Payment Term. Should be one of the following values: `number of days`, `day of next month`, `last day of next month`, `days since the end of the month` [optional]
is_active Boolean Points that Payment Term is Active. `True` as default for POST. [optional] [default to true]
is_default Boolean Points that Payment Term is Default. `False` as default for POST. [optional] [default to false]

Code Sample

require 'DearInventoryRuby'

instance = DearInventoryRuby::PaymentTerm.new(id: nil,
                                 name: nil,
                                 duration: nil,
                                 method: nil,
                                 is_active: nil,
                                 is_default: nil)