Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.21 KB

File metadata and controls

27 lines (20 loc) · 1.21 KB

XeroRuby::Accounting::TrackingCategory

Properties

Name Type Description Notes
tracking_category_id String The Xero identifier for a tracking category e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9 [optional]
tracking_option_id String The Xero identifier for a tracking option e.g. dc54c220-0140-495a-b925-3246adc0075f [optional]
name String The name of the tracking category e.g. Department, Region (max length = 100) [optional]
option String The option name of the tracking option e.g. East, West (max length = 100) [optional]
status String The status of a tracking category [optional]
options Array<TrackingOption> See Tracking Options [optional]

Code Sample

require 'XeroRuby::Accounting'

instance = XeroRuby::Accounting::TrackingCategory.new(tracking_category_id: null,
                                 tracking_option_id: null,
                                 name: null,
                                 option: null,
                                 status: null,
                                 options: null)