Sha256: 1661bb09e7cbc4467466d3e4b2877568ba634450e513e11dc539d0ce1e02bb00
Contents?: true
Size: 739 Bytes
Versions: 5
Compression:
Stored size: 739 Bytes
Contents
module Xeroizer module Record class ScheduleModel < BaseModel end class Schedule < Base UNIT = { 'WEEKLY' => 'Weekly', 'MONTHLY' => 'Monthly', 'YEARLY' => 'Yearly', } unless defined?(UNIT) PAYMENT_TERM = { 'DAYSAFTERBILLDATE' => 'day(s) after bill date', 'DAYSAFTERBILLMONTH' => 'day(s) after bill month', 'OFCURRENTMONTH' => 'of the current month', 'OFFOLLOWINGMONTH' => 'of the following month', } unless defined?(PAYMENT_TERM) integer :period string :unit integer :due_date string :due_date_type date :start_date date :next_scheduled_date date :end_date end end end
Version data entries
5 entries across 5 versions & 2 rubygems