Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 2.55 KB

File metadata and controls

59 lines (52 loc) · 2.55 KB

XeroRuby::Accounting::TenNinteyNineContact

Properties

Name Type Description Notes
box1 Float Box 1 on 1099 Form [optional]
box2 Float Box 2 on 1099 Form [optional]
box3 Float Box 3 on 1099 Form [optional]
box4 Float Box 4 on 1099 Form [optional]
box5 Float Box 5 on 1099 Form [optional]
box6 Float Box 6 on 1099 Form [optional]
box7 Float Box 7 on 1099 Form [optional]
box8 Float Box 8 on 1099 Form [optional]
box9 Float Box 9 on 1099 Form [optional]
box10 Float Box 10 on 1099 Form [optional]
box11 Float Box 11 on 1099 Form [optional]
box13 Float Box 13 on 1099 Form [optional]
box14 Float Box 14 on 1099 Form [optional]
name String Contact name on 1099 Form [optional]
federal_tax_id_type String Contact Fed Tax ID type [optional]
city String Contact city on 1099 Form [optional]
zip String Contact zip on 1099 Form [optional]
state String Contact State on 1099 Form [optional]
email String Contact email on 1099 Form [optional]
street_address String Contact address on 1099 Form [optional]
tax_id String Contact tax id on 1099 Form [optional]
contact_id String Contact contact id [optional]

Code Sample

require 'XeroRuby::Accounting'

instance = XeroRuby::Accounting::TenNinteyNineContact.new(box1: null,
                                 box2: null,
                                 box3: null,
                                 box4: null,
                                 box5: null,
                                 box6: null,
                                 box7: null,
                                 box8: null,
                                 box9: null,
                                 box10: null,
                                 box11: null,
                                 box13: null,
                                 box14: null,
                                 name: null,
                                 federal_tax_id_type: null,
                                 city: null,
                                 zip: null,
                                 state: null,
                                 email: null,
                                 street_address: null,
                                 tax_id: null,
                                 contact_id: null)