Skip to content

Latest commit

 

History

History
65 lines (58 loc) · 3.01 KB

File metadata and controls

65 lines (58 loc) · 3.01 KB

XeroRuby::Accounting::TenNinetyNineContact

Properties

Name Type Description Notes
box1 BigDecimal Box 1 on 1099 Form [optional]
box2 BigDecimal Box 2 on 1099 Form [optional]
box3 BigDecimal Box 3 on 1099 Form [optional]
box4 BigDecimal Box 4 on 1099 Form [optional]
box5 BigDecimal Box 5 on 1099 Form [optional]
box6 BigDecimal Box 6 on 1099 Form [optional]
box7 BigDecimal Box 7 on 1099 Form [optional]
box8 BigDecimal Box 8 on 1099 Form [optional]
box9 BigDecimal Box 9 on 1099 Form [optional]
box10 BigDecimal Box 10 on 1099 Form [optional]
box11 BigDecimal Box 11 on 1099 Form [optional]
box13 BigDecimal Box 13 on 1099 Form [optional]
box14 BigDecimal 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]
legal_name String Contact legal name [optional]
business_name String Contact business name [optional]
federal_tax_classification String Contact federal tax classification [optional]

Code Sample

require 'XeroRuby::Accounting'

instance = XeroRuby::Accounting::TenNinetyNineContact.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,
                                 legal_name: null,
                                 business_name: null,
                                 federal_tax_classification: null)