avalara_sdk 25.8.2 → 25.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +18 -79
- data/docs/A1099/V2/CompaniesW9Api.md +18 -18
- data/docs/A1099/V2/CompanyCreateUpdateRequestModel.md +18 -18
- data/docs/A1099/V2/CompanyResponse.md +37 -37
- data/docs/A1099/V2/CoveredIndividual.md +56 -0
- data/docs/A1099/V2/CreateAndSendW9FormEmailRequest.md +55 -0
- data/docs/A1099/V2/CreateCompanyRequest.md +49 -0
- data/docs/A1099/V2/CreateIssuerRequest.md +49 -0
- data/docs/A1099/V2/EntryStatusResponse.md +20 -0
- data/docs/A1099/V2/Form1042S.md +83 -83
- data/docs/A1099/V2/Form1095B.md +72 -62
- data/docs/A1099/V2/Form1095C.md +112 -0
- data/docs/A1099/V2/Form1099Base.md +60 -60
- data/docs/A1099/V2/Form1099Div.md +79 -77
- data/docs/A1099/V2/Form1099Int.md +76 -74
- data/docs/A1099/V2/Form1099K.md +83 -83
- data/docs/A1099/V2/Form1099ListRequest.md +20 -0
- data/docs/A1099/V2/Form1099Misc.md +79 -77
- data/docs/A1099/V2/Form1099Nec.md +64 -64
- data/docs/A1099/V2/Form1099R.md +95 -93
- data/docs/A1099/V2/Forms1099Api.md +45 -41
- data/docs/A1099/V2/FormsW9Api.md +98 -14
- data/docs/A1099/V2/Get1099Form200Response.md +19 -19
- data/docs/A1099/V2/IntermediaryOrFlowThrough.md +11 -11
- data/docs/A1099/V2/IssuerCommand.md +16 -16
- data/docs/A1099/V2/IssuerResponse.md +35 -35
- data/docs/A1099/V2/Issuers1099Api.md +10 -10
- data/docs/A1099/V2/JobResponse.md +56 -0
- data/docs/A1099/V2/JobsApi.md +91 -0
- data/docs/A1099/V2/OfferAndCoverage.md +28 -0
- data/docs/A1099/V2/PaginatedQueryResultModelForm1099Base.md +22 -0
- data/docs/A1099/V2/PrimaryWithholdingAgent.md +4 -4
- data/docs/A1099/V2/StateAndLocalWithholding.md +8 -8
- data/docs/A1099/V2/ValidationError.md +2 -2
- data/docs/A1099/V2/W4FormMinimalRequest.md +30 -0
- data/docs/A1099/V2/W4FormRequest.md +6 -6
- data/docs/A1099/V2/W8BenEFormMinimalRequest.md +28 -0
- data/docs/A1099/V2/W8BenEFormRequest.md +6 -6
- data/docs/A1099/V2/W8BenFormMinimalRequest.md +28 -0
- data/docs/A1099/V2/W8BenFormRequest.md +6 -6
- data/docs/A1099/V2/W8ImyFormMinimalRequest.md +28 -0
- data/docs/A1099/V2/W8ImyFormRequest.md +6 -6
- data/docs/A1099/V2/W9FormBaseMinimalRequest.md +24 -0
- data/docs/A1099/V2/W9FormBaseRequest.md +6 -6
- data/docs/A1099/V2/W9FormBaseResponse.md +3 -3
- data/docs/A1099/V2/W9FormMinimalRequest.md +28 -0
- data/docs/A1099/V2/W9FormRequest.md +6 -6
- data/lib/avalara_sdk/api/A1099/V2/companies_w9_api.rb +27 -27
- data/lib/avalara_sdk/api/A1099/V2/forms1099_api.rb +89 -57
- data/lib/avalara_sdk/api/A1099/V2/forms_w9_api.rb +144 -6
- data/lib/avalara_sdk/api/A1099/V2/issuers1099_api.rb +21 -21
- data/lib/avalara_sdk/api/A1099/V2/{jobs1099_api.rb → jobs_api.rb} +9 -9
- data/lib/avalara_sdk/api/EInvoicing/V1/data_input_fields_api.rb +1 -1
- data/lib/avalara_sdk/api/EInvoicing/V1/documents_api.rb +1 -1
- data/lib/avalara_sdk/api/EInvoicing/V1/interop_api.rb +1 -1
- data/lib/avalara_sdk/api/EInvoicing/V1/mandates_api.rb +1 -1
- data/lib/avalara_sdk/api/EInvoicing/V1/subscriptions_api.rb +1 -1
- data/lib/avalara_sdk/api/EInvoicing/V1/tax_identifiers_api.rb +1 -1
- data/lib/avalara_sdk/api/EInvoicing/V1/trading_partners_api.rb +1 -1
- data/lib/avalara_sdk/models/A1099/V2/company_create_update_request_model.rb +58 -17
- data/lib/avalara_sdk/models/A1099/V2/company_response.rb +110 -69
- data/lib/avalara_sdk/models/A1099/V2/{covered_individual_request.rb → covered_individual.rb} +36 -7
- data/lib/avalara_sdk/models/A1099/V2/{i_create_form1099_request.rb → create_and_send_w9_form_email_request.rb} +6 -5
- data/lib/avalara_sdk/models/A1099/V2/{error_response_errors_inner.rb → create_company_request.rb} +3 -3
- data/lib/avalara_sdk/models/A1099/V2/{i_update_form1099_request.rb → create_issuer_request.rb} +3 -5
- data/lib/avalara_sdk/models/A1099/V2/{status_detail.rb → entry_status_response.rb} +20 -18
- data/lib/avalara_sdk/models/A1099/V2/form1042_s.rb +424 -179
- data/lib/avalara_sdk/models/A1099/V2/form1095_b.rb +365 -179
- data/lib/avalara_sdk/models/A1099/V2/{form1095_b_response.rb → form1095_c.rb} +259 -111
- data/lib/avalara_sdk/models/A1099/V2/form1099_base.rb +286 -177
- data/lib/avalara_sdk/models/A1099/V2/form1099_div.rb +310 -171
- data/lib/avalara_sdk/models/A1099/V2/form1099_int.rb +308 -174
- data/lib/avalara_sdk/models/A1099/V2/form1099_k.rb +298 -186
- data/lib/avalara_sdk/models/A1099/V2/{form1099_div_list.rb → form1099_list_request.rb} +49 -22
- data/lib/avalara_sdk/models/A1099/V2/form1099_misc.rb +337 -201
- data/lib/avalara_sdk/models/A1099/V2/form1099_nec.rb +298 -183
- data/lib/avalara_sdk/models/A1099/V2/form1099_r.rb +414 -274
- data/lib/avalara_sdk/models/A1099/V2/get1099_form200_response.rb +9 -9
- data/lib/avalara_sdk/models/A1099/V2/intermediary_or_flow_through.rb +13 -1
- data/lib/avalara_sdk/models/A1099/V2/issuer_command.rb +42 -23
- data/lib/avalara_sdk/models/A1099/V2/issuer_response.rb +77 -46
- data/lib/avalara_sdk/models/A1099/V2/{job_result.rb → job_response.rb} +108 -42
- data/lib/avalara_sdk/models/A1099/V2/{offer_and_coverage_request.rb → offer_and_coverage.rb} +79 -9
- data/lib/avalara_sdk/models/A1099/V2/{paginated_query_result_model.rb → paginated_query_result_model_form1099_base.rb} +4 -4
- data/lib/avalara_sdk/models/A1099/V2/primary_withholding_agent.rb +23 -16
- data/lib/avalara_sdk/models/A1099/V2/state_and_local_withholding.rb +8 -0
- data/lib/avalara_sdk/models/A1099/V2/validation_error.rb +2 -0
- data/lib/avalara_sdk/models/A1099/V2/w4_form_minimal_request.rb +418 -0
- data/lib/avalara_sdk/models/A1099/V2/w4_form_request.rb +53 -27
- data/lib/avalara_sdk/models/A1099/V2/{company_model.rb → w8_ben_e_form_minimal_request.rb} +139 -170
- data/lib/avalara_sdk/models/A1099/V2/w8_ben_e_form_request.rb +53 -27
- data/lib/avalara_sdk/models/A1099/V2/{base_company_model.rb → w8_ben_form_minimal_request.rb} +148 -122
- data/lib/avalara_sdk/models/A1099/V2/w8_ben_form_request.rb +53 -27
- data/lib/avalara_sdk/models/A1099/V2/{attribute.rb → w8_imy_form_minimal_request.rb} +135 -132
- data/lib/avalara_sdk/models/A1099/V2/w8_imy_form_request.rb +53 -27
- data/lib/avalara_sdk/models/A1099/V2/{http_validation_problem_details.rb → w9_form_base_minimal_request.rb} +87 -53
- data/lib/avalara_sdk/models/A1099/V2/w9_form_base_request.rb +60 -27
- data/lib/avalara_sdk/models/A1099/V2/w9_form_base_response.rb +14 -14
- data/lib/avalara_sdk/models/A1099/V2/{company_response_model.rb → w9_form_minimal_request.rb} +140 -148
- data/lib/avalara_sdk/models/A1099/V2/w9_form_request.rb +53 -27
- data/lib/avalara_sdk/version.rb +1 -1
- data/lib/avalara_sdk.rb +22 -105
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/date-3.4.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/debase-0.2.9/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/debug-1.10.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/erb-5.0.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/io-console-0.8.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/json-2.12.2/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/prism-1.4.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/psych-5.2.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/racc-1.8.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/stringio-3.1.7/gem_make.out +5 -5
- metadata +37 -103
- data/lib/avalara_sdk/models/A1099/V2/base_form_list_request.rb +0 -210
- data/lib/avalara_sdk/models/A1099/V2/bulk_upsert1099_forms_request.rb +0 -108
- data/lib/avalara_sdk/models/A1099/V2/covered_individual_reference.rb +0 -403
- data/lib/avalara_sdk/models/A1099/V2/covered_individual_reference_response.rb +0 -407
- data/lib/avalara_sdk/models/A1099/V2/create1099_form201_response.rb +0 -108
- data/lib/avalara_sdk/models/A1099/V2/data.rb +0 -237
- data/lib/avalara_sdk/models/A1099/V2/form1042_s_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1042_s_list_item.rb +0 -816
- data/lib/avalara_sdk/models/A1099/V2/form1042_s_list_item_response.rb +0 -980
- data/lib/avalara_sdk/models/A1099/V2/form1042_s_request.rb +0 -778
- data/lib/avalara_sdk/models/A1099/V2/form1042_s_response.rb +0 -619
- data/lib/avalara_sdk/models/A1099/V2/form1095_b_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1095_b_list_item.rb +0 -606
- data/lib/avalara_sdk/models/A1099/V2/form1095_b_list_item_response.rb +0 -765
- data/lib/avalara_sdk/models/A1099/V2/form1095_b_request.rb +0 -627
- data/lib/avalara_sdk/models/A1099/V2/form1095_c_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1095_c_list_item.rb +0 -662
- data/lib/avalara_sdk/models/A1099/V2/form1099_base_response.rb +0 -726
- data/lib/avalara_sdk/models/A1099/V2/form1099_div_list_item.rb +0 -747
- data/lib/avalara_sdk/models/A1099/V2/form1099_div_list_item_response.rb +0 -931
- data/lib/avalara_sdk/models/A1099/V2/form1099_div_request.rb +0 -729
- data/lib/avalara_sdk/models/A1099/V2/form1099_div_response.rb +0 -790
- data/lib/avalara_sdk/models/A1099/V2/form1099_int_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1099_int_list_item.rb +0 -702
- data/lib/avalara_sdk/models/A1099/V2/form1099_int_list_item_response.rb +0 -887
- data/lib/avalara_sdk/models/A1099/V2/form1099_int_request.rb +0 -684
- data/lib/avalara_sdk/models/A1099/V2/form1099_int_response.rb +0 -773
- data/lib/avalara_sdk/models/A1099/V2/form1099_k_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1099_k_list_item.rb +0 -788
- data/lib/avalara_sdk/models/A1099/V2/form1099_k_list_item_response.rb +0 -995
- data/lib/avalara_sdk/models/A1099/V2/form1099_k_request.rb +0 -770
- data/lib/avalara_sdk/models/A1099/V2/form1099_k_response.rb +0 -839
- data/lib/avalara_sdk/models/A1099/V2/form1099_list.rb +0 -219
- data/lib/avalara_sdk/models/A1099/V2/form1099_list_data_inner.rb +0 -55
- data/lib/avalara_sdk/models/A1099/V2/form1099_list_response.rb +0 -220
- data/lib/avalara_sdk/models/A1099/V2/form1099_list_response_value_inner.rb +0 -108
- data/lib/avalara_sdk/models/A1099/V2/form1099_misc_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1099_misc_list_item.rb +0 -688
- data/lib/avalara_sdk/models/A1099/V2/form1099_misc_list_item_response.rb +0 -886
- data/lib/avalara_sdk/models/A1099/V2/form1099_misc_request.rb +0 -670
- data/lib/avalara_sdk/models/A1099/V2/form1099_misc_response.rb +0 -754
- data/lib/avalara_sdk/models/A1099/V2/form1099_nec_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1099_nec_list_item.rb +0 -586
- data/lib/avalara_sdk/models/A1099/V2/form1099_nec_list_item_response.rb +0 -765
- data/lib/avalara_sdk/models/A1099/V2/form1099_nec_request.rb +0 -567
- data/lib/avalara_sdk/models/A1099/V2/form1099_nec_response.rb +0 -646
- data/lib/avalara_sdk/models/A1099/V2/form1099_proccess_result.rb +0 -228
- data/lib/avalara_sdk/models/A1099/V2/form1099_proccess_result_processed_forms_inner.rb +0 -107
- data/lib/avalara_sdk/models/A1099/V2/form1099_r_list.rb +0 -238
- data/lib/avalara_sdk/models/A1099/V2/form1099_r_list_item.rb +0 -763
- data/lib/avalara_sdk/models/A1099/V2/form1099_r_list_item_response.rb +0 -942
- data/lib/avalara_sdk/models/A1099/V2/form1099_r_request.rb +0 -720
- data/lib/avalara_sdk/models/A1099/V2/form1099_r_response.rb +0 -839
- data/lib/avalara_sdk/models/A1099/V2/form1099_status_detail_response.rb +0 -223
- data/lib/avalara_sdk/models/A1099/V2/form_request_base.rb +0 -502
- data/lib/avalara_sdk/models/A1099/V2/form_request_csv_base.rb +0 -475
- data/lib/avalara_sdk/models/A1099/V2/form_request_list_item_base.rb +0 -548
- data/lib/avalara_sdk/models/A1099/V2/form_request_model.rb +0 -345
- data/lib/avalara_sdk/models/A1099/V2/form_response_base.rb +0 -612
- data/lib/avalara_sdk/models/A1099/V2/form_single_request_base.rb +0 -530
- data/lib/avalara_sdk/models/A1099/V2/included_base.rb +0 -219
- data/lib/avalara_sdk/models/A1099/V2/intermediary_or_flow_through_request.rb +0 -311
- data/lib/avalara_sdk/models/A1099/V2/intermediary_or_flow_through_response.rb +0 -311
- data/lib/avalara_sdk/models/A1099/V2/link.rb +0 -210
- data/lib/avalara_sdk/models/A1099/V2/paginated_w9_forms_model.rb +0 -231
- data/lib/avalara_sdk/models/A1099/V2/primary_withholding_agent_request.rb +0 -221
- data/lib/avalara_sdk/models/A1099/V2/primary_withholding_agent_response.rb +0 -221
- data/lib/avalara_sdk/models/A1099/V2/problem_details.rb +0 -251
- data/lib/avalara_sdk/models/A1099/V2/state_and_local_withholding_request.rb +0 -278
- data/lib/avalara_sdk/models/A1099/V2/state_and_local_withholding_response.rb +0 -282
- data/lib/avalara_sdk/models/A1099/V2/state_efile_status_detail_app.rb +0 -231
- data/lib/avalara_sdk/models/A1099/V2/state_efile_status_detail_response.rb +0 -231
- data/lib/avalara_sdk/models/A1099/V2/update1099_form200_response.rb +0 -108
- data/lib/avalara_sdk/models/A1099/V2/validation_error_app.rb +0 -229
- data/lib/avalara_sdk/models/A1099/V2/validation_error_response.rb +0 -231
- data/lib/avalara_sdk/models/EInvoicing/V1/directory_search_response.rb +0 -233
- data/lib/avalara_sdk/models/EInvoicing/V1/directory_search_response_value_inner.rb +0 -274
- data/lib/avalara_sdk/models/EInvoicing/V1/directory_search_response_value_inner_addresses_inner.rb +0 -251
- data/lib/avalara_sdk/models/EInvoicing/V1/directory_search_response_value_inner_identifiers_inner.rb +0 -221
- data/lib/avalara_sdk/models/EInvoicing/V1/directory_search_response_value_inner_supported_document_types_inner.rb +0 -241
- data/lib/avalara_sdk/models/EInvoicing/V1/document_fetch_request.rb +0 -224
- data/lib/avalara_sdk/models/EInvoicing/V1/document_fetch_request_data_inner.rb +0 -237
- data/lib/avalara_sdk/models/EInvoicing/V1/document_fetch_request_metadata.rb +0 -288
- data/lib/avalara_sdk/models/EInvoicing/V1/submit_document_data.rb +0 -216
@@ -11,135 +11,199 @@ require 'time'
|
|
11
11
|
|
12
12
|
module AvalaraSdk::A1099::V2
|
13
13
|
class Form1099Nec
|
14
|
+
# Nonemployee compensation
|
14
15
|
attr_accessor :nonemployee_compensation
|
15
16
|
|
16
|
-
|
17
|
-
|
17
|
+
# Payer made direct sales totaling $5,000 or more of consumer products to recipient for resale
|
18
18
|
attr_accessor :direct_sales_indicator
|
19
19
|
|
20
|
-
|
20
|
+
# Federal income tax withheld
|
21
|
+
attr_accessor :federal_income_tax_withheld
|
21
22
|
|
23
|
+
# Form type
|
22
24
|
attr_accessor :type
|
23
25
|
|
26
|
+
# Form ID. Unique identifier set when the record is created.
|
27
|
+
attr_accessor :id
|
28
|
+
|
29
|
+
# Issuer ID - only required when creating forms
|
24
30
|
attr_accessor :issuer_id
|
25
31
|
|
32
|
+
# Issuer Reference ID - only required when creating forms
|
26
33
|
attr_accessor :issuer_reference_id
|
27
34
|
|
35
|
+
# Issuer TIN - readonly
|
28
36
|
attr_accessor :issuer_tin
|
29
37
|
|
38
|
+
# Tax Year - only required when creating forms
|
30
39
|
attr_accessor :tax_year
|
31
40
|
|
32
|
-
|
41
|
+
# Internal reference ID. Never shown to any agency or recipient.
|
42
|
+
attr_accessor :reference_id
|
33
43
|
|
34
|
-
|
44
|
+
# Recipient's Federal Tax Identification Number (TIN).
|
45
|
+
attr_accessor :tin
|
35
46
|
|
36
|
-
|
47
|
+
# Recipient name
|
48
|
+
attr_accessor :recipient_name
|
37
49
|
|
38
|
-
|
50
|
+
# Type of TIN (Tax ID Number)
|
51
|
+
attr_accessor :tin_type
|
39
52
|
|
40
|
-
|
53
|
+
# Recipient second name
|
54
|
+
attr_accessor :recipient_second_name
|
41
55
|
|
42
|
-
|
56
|
+
# Address.
|
57
|
+
attr_accessor :address
|
43
58
|
|
44
|
-
|
59
|
+
# Address line 2.
|
60
|
+
attr_accessor :address2
|
45
61
|
|
46
|
-
|
62
|
+
# City.
|
63
|
+
attr_accessor :city
|
47
64
|
|
48
|
-
|
65
|
+
# Two-letter US state or Canadian province code (required for US/CA addresses).
|
66
|
+
attr_accessor :state
|
49
67
|
|
50
|
-
|
68
|
+
# ZIP/postal code.
|
69
|
+
attr_accessor :zip
|
51
70
|
|
52
|
-
|
71
|
+
# Recipient's Contact email address.
|
72
|
+
attr_accessor :email
|
53
73
|
|
54
|
-
|
74
|
+
# Account number
|
75
|
+
attr_accessor :account_number
|
55
76
|
|
56
|
-
|
77
|
+
# Office code
|
78
|
+
attr_accessor :office_code
|
57
79
|
|
58
|
-
|
80
|
+
# Province or region for non-US/CA addresses.
|
81
|
+
attr_accessor :non_us_province
|
59
82
|
|
60
|
-
|
83
|
+
# Two-letter IRS country code (e.g., 'US', 'CA'), as defined at https://www.irs.gov/e-file-providers/country-codes.
|
84
|
+
attr_accessor :country_code
|
61
85
|
|
62
|
-
|
86
|
+
# Date when federal e-filing should be scheduled for this form
|
87
|
+
attr_accessor :federal_efile_date
|
63
88
|
|
64
|
-
|
89
|
+
# Boolean indicating that postal mailing to the recipient should be scheduled for this form
|
90
|
+
attr_accessor :postal_mail
|
65
91
|
|
66
|
-
|
92
|
+
# Date when state e-filing should be scheduled for this form
|
93
|
+
attr_accessor :state_efile_date
|
67
94
|
|
68
|
-
|
95
|
+
# Date when recipient e-delivery should be scheduled for this form
|
96
|
+
attr_accessor :recipient_edelivery_date
|
69
97
|
|
70
|
-
|
98
|
+
# Boolean indicating that TIN Matching should be scheduled for this form
|
99
|
+
attr_accessor :tin_match
|
71
100
|
|
72
|
-
|
101
|
+
# No TIN indicator
|
102
|
+
attr_accessor :no_tin
|
73
103
|
|
74
|
-
|
104
|
+
# Boolean indicating that address verification should be scheduled for this form
|
105
|
+
attr_accessor :address_verification
|
75
106
|
|
76
|
-
|
107
|
+
# State and local withholding information
|
108
|
+
attr_accessor :state_and_local_withholding
|
77
109
|
|
78
|
-
|
110
|
+
# Second TIN notice
|
111
|
+
attr_accessor :second_tin_notice
|
79
112
|
|
80
|
-
|
113
|
+
# Federal e-file status
|
114
|
+
attr_accessor :federal_efile_status
|
81
115
|
|
82
|
-
|
116
|
+
# State e-file status
|
117
|
+
attr_accessor :state_efile_status
|
83
118
|
|
84
|
-
|
119
|
+
# Postal mail to recipient status
|
120
|
+
attr_accessor :postal_mail_status
|
85
121
|
|
86
|
-
|
122
|
+
# TIN Match status
|
123
|
+
attr_accessor :tin_match_status
|
87
124
|
|
88
|
-
|
125
|
+
# Address verification status
|
126
|
+
attr_accessor :address_verification_status
|
89
127
|
|
128
|
+
# EDelivery status
|
129
|
+
attr_accessor :e_delivery_status
|
130
|
+
|
131
|
+
# Validation errors
|
90
132
|
attr_accessor :validation_errors
|
91
133
|
|
134
|
+
# Date time when the record was created.
|
92
135
|
attr_accessor :created_at
|
93
136
|
|
137
|
+
# Date time when the record was last updated.
|
94
138
|
attr_accessor :updated_at
|
95
139
|
|
96
|
-
|
140
|
+
class EnumAttributeValidator
|
141
|
+
attr_reader :datatype
|
142
|
+
attr_reader :allowable_values
|
143
|
+
|
144
|
+
def initialize(datatype, allowable_values)
|
145
|
+
@allowable_values = allowable_values.map do |value|
|
146
|
+
case datatype.to_s
|
147
|
+
when /Integer/i
|
148
|
+
value.to_i
|
149
|
+
when /Float/i
|
150
|
+
value.to_f
|
151
|
+
else
|
152
|
+
value
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
def valid?(value)
|
158
|
+
!value || allowable_values.include?(value)
|
159
|
+
end
|
160
|
+
end
|
97
161
|
|
98
162
|
# Attribute mapping from ruby-style variable name to JSON key.
|
99
163
|
def self.attribute_map
|
100
164
|
{
|
101
165
|
:'nonemployee_compensation' => :'nonemployeeCompensation',
|
102
|
-
:'federal_income_tax_withheld' => :'federalIncomeTaxWithheld',
|
103
166
|
:'direct_sales_indicator' => :'directSalesIndicator',
|
104
|
-
:'
|
167
|
+
:'federal_income_tax_withheld' => :'federalIncomeTaxWithheld',
|
105
168
|
:'type' => :'type',
|
169
|
+
:'id' => :'id',
|
106
170
|
:'issuer_id' => :'issuerId',
|
107
171
|
:'issuer_reference_id' => :'issuerReferenceId',
|
108
172
|
:'issuer_tin' => :'issuerTin',
|
109
173
|
:'tax_year' => :'taxYear',
|
110
|
-
:'federal_efile' => :'federalEfile',
|
111
|
-
:'federal_efile_status' => :'federalEfileStatus',
|
112
|
-
:'state_efile' => :'stateEfile',
|
113
|
-
:'state_efile_status' => :'stateEfileStatus',
|
114
|
-
:'postal_mail' => :'postalMail',
|
115
|
-
:'postal_mail_status' => :'postalMailStatus',
|
116
|
-
:'tin_match' => :'tinMatch',
|
117
|
-
:'tin_match_status' => :'tinMatchStatus',
|
118
|
-
:'address_verification' => :'addressVerification',
|
119
|
-
:'address_verification_status' => :'addressVerificationStatus',
|
120
|
-
:'e_delivery_status' => :'eDeliveryStatus',
|
121
174
|
:'reference_id' => :'referenceId',
|
122
|
-
:'email' => :'email',
|
123
|
-
:'tin_type' => :'tinType',
|
124
|
-
:'fatca_filing_requirement' => :'fatcaFilingRequirement',
|
125
175
|
:'tin' => :'tin',
|
126
|
-
:'no_tin' => :'noTin',
|
127
|
-
:'second_tin_notice' => :'secondTinNotice',
|
128
176
|
:'recipient_name' => :'recipientName',
|
177
|
+
:'tin_type' => :'tinType',
|
129
178
|
:'recipient_second_name' => :'recipientSecondName',
|
130
179
|
:'address' => :'address',
|
131
180
|
:'address2' => :'address2',
|
132
181
|
:'city' => :'city',
|
133
182
|
:'state' => :'state',
|
134
183
|
:'zip' => :'zip',
|
135
|
-
:'
|
136
|
-
:'country_code' => :'countryCode',
|
184
|
+
:'email' => :'email',
|
137
185
|
:'account_number' => :'accountNumber',
|
138
186
|
:'office_code' => :'officeCode',
|
187
|
+
:'non_us_province' => :'nonUsProvince',
|
188
|
+
:'country_code' => :'countryCode',
|
189
|
+
:'federal_efile_date' => :'federalEfileDate',
|
190
|
+
:'postal_mail' => :'postalMail',
|
191
|
+
:'state_efile_date' => :'stateEfileDate',
|
192
|
+
:'recipient_edelivery_date' => :'recipientEdeliveryDate',
|
193
|
+
:'tin_match' => :'tinMatch',
|
194
|
+
:'no_tin' => :'noTin',
|
195
|
+
:'address_verification' => :'addressVerification',
|
196
|
+
:'state_and_local_withholding' => :'stateAndLocalWithholding',
|
197
|
+
:'second_tin_notice' => :'secondTinNotice',
|
198
|
+
:'federal_efile_status' => :'federalEfileStatus',
|
199
|
+
:'state_efile_status' => :'stateEfileStatus',
|
200
|
+
:'postal_mail_status' => :'postalMailStatus',
|
201
|
+
:'tin_match_status' => :'tinMatchStatus',
|
202
|
+
:'address_verification_status' => :'addressVerificationStatus',
|
203
|
+
:'e_delivery_status' => :'eDeliveryStatus',
|
139
204
|
:'validation_errors' => :'validationErrors',
|
140
205
|
:'created_at' => :'createdAt',
|
141
|
-
:'updated_at' => :'updatedAt'
|
142
|
-
:'state_and_local_withholding' => :'stateAndLocalWithholding'
|
206
|
+
:'updated_at' => :'updatedAt'
|
143
207
|
}
|
144
208
|
end
|
145
209
|
|
@@ -152,47 +216,47 @@ module AvalaraSdk::A1099::V2
|
|
152
216
|
def self.openapi_types
|
153
217
|
{
|
154
218
|
:'nonemployee_compensation' => :'Float',
|
155
|
-
:'federal_income_tax_withheld' => :'Float',
|
156
219
|
:'direct_sales_indicator' => :'Boolean',
|
157
|
-
:'
|
220
|
+
:'federal_income_tax_withheld' => :'Float',
|
158
221
|
:'type' => :'String',
|
159
|
-
:'
|
222
|
+
:'id' => :'String',
|
223
|
+
:'issuer_id' => :'String',
|
160
224
|
:'issuer_reference_id' => :'String',
|
161
225
|
:'issuer_tin' => :'String',
|
162
226
|
:'tax_year' => :'Integer',
|
163
|
-
:'federal_efile' => :'Boolean',
|
164
|
-
:'federal_efile_status' => :'Form1099StatusDetail',
|
165
|
-
:'state_efile' => :'Boolean',
|
166
|
-
:'state_efile_status' => :'Array<StateEfileStatusDetail>',
|
167
|
-
:'postal_mail' => :'Boolean',
|
168
|
-
:'postal_mail_status' => :'Form1099StatusDetail',
|
169
|
-
:'tin_match' => :'Boolean',
|
170
|
-
:'tin_match_status' => :'Form1099StatusDetail',
|
171
|
-
:'address_verification' => :'Boolean',
|
172
|
-
:'address_verification_status' => :'Form1099StatusDetail',
|
173
|
-
:'e_delivery_status' => :'Form1099StatusDetail',
|
174
227
|
:'reference_id' => :'String',
|
175
|
-
:'email' => :'String',
|
176
|
-
:'tin_type' => :'String',
|
177
|
-
:'fatca_filing_requirement' => :'Boolean',
|
178
228
|
:'tin' => :'String',
|
179
|
-
:'no_tin' => :'Boolean',
|
180
|
-
:'second_tin_notice' => :'Boolean',
|
181
229
|
:'recipient_name' => :'String',
|
230
|
+
:'tin_type' => :'String',
|
182
231
|
:'recipient_second_name' => :'String',
|
183
232
|
:'address' => :'String',
|
184
233
|
:'address2' => :'String',
|
185
234
|
:'city' => :'String',
|
186
235
|
:'state' => :'String',
|
187
236
|
:'zip' => :'String',
|
188
|
-
:'
|
189
|
-
:'country_code' => :'String',
|
237
|
+
:'email' => :'String',
|
190
238
|
:'account_number' => :'String',
|
191
239
|
:'office_code' => :'String',
|
240
|
+
:'non_us_province' => :'String',
|
241
|
+
:'country_code' => :'String',
|
242
|
+
:'federal_efile_date' => :'Date',
|
243
|
+
:'postal_mail' => :'Boolean',
|
244
|
+
:'state_efile_date' => :'Date',
|
245
|
+
:'recipient_edelivery_date' => :'Date',
|
246
|
+
:'tin_match' => :'Boolean',
|
247
|
+
:'no_tin' => :'Boolean',
|
248
|
+
:'address_verification' => :'Boolean',
|
249
|
+
:'state_and_local_withholding' => :'StateAndLocalWithholding',
|
250
|
+
:'second_tin_notice' => :'Boolean',
|
251
|
+
:'federal_efile_status' => :'Form1099StatusDetail',
|
252
|
+
:'state_efile_status' => :'Array<StateEfileStatusDetail>',
|
253
|
+
:'postal_mail_status' => :'Form1099StatusDetail',
|
254
|
+
:'tin_match_status' => :'Form1099StatusDetail',
|
255
|
+
:'address_verification_status' => :'Form1099StatusDetail',
|
256
|
+
:'e_delivery_status' => :'Form1099StatusDetail',
|
192
257
|
:'validation_errors' => :'Array<ValidationError>',
|
193
258
|
:'created_at' => :'Time',
|
194
|
-
:'updated_at' => :'Time'
|
195
|
-
:'state_and_local_withholding' => :'StateAndLocalWithholding'
|
259
|
+
:'updated_at' => :'Time'
|
196
260
|
}
|
197
261
|
end
|
198
262
|
|
@@ -200,33 +264,43 @@ module AvalaraSdk::A1099::V2
|
|
200
264
|
def self.openapi_nullable
|
201
265
|
Set.new([
|
202
266
|
:'nonemployee_compensation',
|
267
|
+
:'direct_sales_indicator',
|
203
268
|
:'federal_income_tax_withheld',
|
269
|
+
:'id',
|
270
|
+
:'issuer_id',
|
204
271
|
:'issuer_reference_id',
|
205
272
|
:'issuer_tin',
|
206
|
-
:'
|
207
|
-
:'postal_mail_status',
|
208
|
-
:'tin_match_status',
|
209
|
-
:'address_verification_status',
|
210
|
-
:'e_delivery_status',
|
273
|
+
:'tax_year',
|
211
274
|
:'reference_id',
|
212
|
-
:'email',
|
213
|
-
:'tin_type',
|
214
|
-
:'fatca_filing_requirement',
|
215
275
|
:'tin',
|
216
|
-
:'second_tin_notice',
|
217
276
|
:'recipient_name',
|
277
|
+
:'tin_type',
|
218
278
|
:'recipient_second_name',
|
219
279
|
:'address',
|
220
280
|
:'address2',
|
221
281
|
:'city',
|
222
282
|
:'state',
|
223
283
|
:'zip',
|
224
|
-
:'
|
225
|
-
:'country_code',
|
284
|
+
:'email',
|
226
285
|
:'account_number',
|
227
286
|
:'office_code',
|
287
|
+
:'non_us_province',
|
288
|
+
:'country_code',
|
289
|
+
:'federal_efile_date',
|
290
|
+
:'postal_mail',
|
291
|
+
:'state_efile_date',
|
292
|
+
:'recipient_edelivery_date',
|
293
|
+
:'tin_match',
|
294
|
+
:'no_tin',
|
295
|
+
:'address_verification',
|
296
|
+
:'state_and_local_withholding',
|
297
|
+
:'federal_efile_status',
|
298
|
+
:'state_efile_status',
|
299
|
+
:'postal_mail_status',
|
300
|
+
:'tin_match_status',
|
301
|
+
:'address_verification_status',
|
302
|
+
:'e_delivery_status',
|
228
303
|
:'validation_errors',
|
229
|
-
:'state_and_local_withholding'
|
230
304
|
])
|
231
305
|
end
|
232
306
|
|
@@ -254,22 +328,26 @@ module AvalaraSdk::A1099::V2
|
|
254
328
|
|
255
329
|
if attributes.key?(:'nonemployee_compensation')
|
256
330
|
self.nonemployee_compensation = attributes[:'nonemployee_compensation']
|
257
|
-
|
258
|
-
|
259
|
-
if attributes.key?(:'federal_income_tax_withheld')
|
260
|
-
self.federal_income_tax_withheld = attributes[:'federal_income_tax_withheld']
|
331
|
+
else
|
332
|
+
self.nonemployee_compensation = nil
|
261
333
|
end
|
262
334
|
|
263
335
|
if attributes.key?(:'direct_sales_indicator')
|
264
336
|
self.direct_sales_indicator = attributes[:'direct_sales_indicator']
|
265
337
|
end
|
266
338
|
|
267
|
-
if attributes.key?(:'
|
268
|
-
self.
|
339
|
+
if attributes.key?(:'federal_income_tax_withheld')
|
340
|
+
self.federal_income_tax_withheld = attributes[:'federal_income_tax_withheld']
|
269
341
|
end
|
270
342
|
|
271
343
|
if attributes.key?(:'type')
|
272
344
|
self.type = attributes[:'type']
|
345
|
+
else
|
346
|
+
self.type = nil
|
347
|
+
end
|
348
|
+
|
349
|
+
if attributes.key?(:'id')
|
350
|
+
self.id = attributes[:'id']
|
273
351
|
end
|
274
352
|
|
275
353
|
if attributes.key?(:'issuer_id')
|
@@ -288,122 +366,134 @@ module AvalaraSdk::A1099::V2
|
|
288
366
|
self.tax_year = attributes[:'tax_year']
|
289
367
|
end
|
290
368
|
|
291
|
-
if attributes.key?(:'
|
292
|
-
self.
|
369
|
+
if attributes.key?(:'reference_id')
|
370
|
+
self.reference_id = attributes[:'reference_id']
|
293
371
|
end
|
294
372
|
|
295
|
-
if attributes.key?(:'
|
296
|
-
self.
|
373
|
+
if attributes.key?(:'tin')
|
374
|
+
self.tin = attributes[:'tin']
|
297
375
|
end
|
298
376
|
|
299
|
-
if attributes.key?(:'
|
300
|
-
self.
|
377
|
+
if attributes.key?(:'recipient_name')
|
378
|
+
self.recipient_name = attributes[:'recipient_name']
|
379
|
+
else
|
380
|
+
self.recipient_name = nil
|
301
381
|
end
|
302
382
|
|
303
|
-
if attributes.key?(:'
|
304
|
-
|
305
|
-
self.state_efile_status = value
|
306
|
-
end
|
383
|
+
if attributes.key?(:'tin_type')
|
384
|
+
self.tin_type = attributes[:'tin_type']
|
307
385
|
end
|
308
386
|
|
309
|
-
if attributes.key?(:'
|
310
|
-
self.
|
387
|
+
if attributes.key?(:'recipient_second_name')
|
388
|
+
self.recipient_second_name = attributes[:'recipient_second_name']
|
311
389
|
end
|
312
390
|
|
313
|
-
if attributes.key?(:'
|
314
|
-
self.
|
391
|
+
if attributes.key?(:'address')
|
392
|
+
self.address = attributes[:'address']
|
393
|
+
else
|
394
|
+
self.address = nil
|
315
395
|
end
|
316
396
|
|
317
|
-
if attributes.key?(:'
|
318
|
-
self.
|
397
|
+
if attributes.key?(:'address2')
|
398
|
+
self.address2 = attributes[:'address2']
|
319
399
|
end
|
320
400
|
|
321
|
-
if attributes.key?(:'
|
322
|
-
self.
|
401
|
+
if attributes.key?(:'city')
|
402
|
+
self.city = attributes[:'city']
|
403
|
+
else
|
404
|
+
self.city = nil
|
323
405
|
end
|
324
406
|
|
325
|
-
if attributes.key?(:'
|
326
|
-
self.
|
407
|
+
if attributes.key?(:'state')
|
408
|
+
self.state = attributes[:'state']
|
327
409
|
end
|
328
410
|
|
329
|
-
if attributes.key?(:'
|
330
|
-
self.
|
411
|
+
if attributes.key?(:'zip')
|
412
|
+
self.zip = attributes[:'zip']
|
331
413
|
end
|
332
414
|
|
333
|
-
if attributes.key?(:'
|
334
|
-
self.
|
415
|
+
if attributes.key?(:'email')
|
416
|
+
self.email = attributes[:'email']
|
335
417
|
end
|
336
418
|
|
337
|
-
if attributes.key?(:'
|
338
|
-
self.
|
419
|
+
if attributes.key?(:'account_number')
|
420
|
+
self.account_number = attributes[:'account_number']
|
339
421
|
end
|
340
422
|
|
341
|
-
if attributes.key?(:'
|
342
|
-
self.
|
423
|
+
if attributes.key?(:'office_code')
|
424
|
+
self.office_code = attributes[:'office_code']
|
343
425
|
end
|
344
426
|
|
345
|
-
if attributes.key?(:'
|
346
|
-
self.
|
427
|
+
if attributes.key?(:'non_us_province')
|
428
|
+
self.non_us_province = attributes[:'non_us_province']
|
347
429
|
end
|
348
430
|
|
349
|
-
if attributes.key?(:'
|
350
|
-
self.
|
431
|
+
if attributes.key?(:'country_code')
|
432
|
+
self.country_code = attributes[:'country_code']
|
433
|
+
else
|
434
|
+
self.country_code = nil
|
351
435
|
end
|
352
436
|
|
353
|
-
if attributes.key?(:'
|
354
|
-
self.
|
437
|
+
if attributes.key?(:'federal_efile_date')
|
438
|
+
self.federal_efile_date = attributes[:'federal_efile_date']
|
355
439
|
end
|
356
440
|
|
357
|
-
if attributes.key?(:'
|
358
|
-
self.
|
441
|
+
if attributes.key?(:'postal_mail')
|
442
|
+
self.postal_mail = attributes[:'postal_mail']
|
359
443
|
end
|
360
444
|
|
361
|
-
if attributes.key?(:'
|
362
|
-
self.
|
445
|
+
if attributes.key?(:'state_efile_date')
|
446
|
+
self.state_efile_date = attributes[:'state_efile_date']
|
363
447
|
end
|
364
448
|
|
365
|
-
if attributes.key?(:'
|
366
|
-
self.
|
449
|
+
if attributes.key?(:'recipient_edelivery_date')
|
450
|
+
self.recipient_edelivery_date = attributes[:'recipient_edelivery_date']
|
367
451
|
end
|
368
452
|
|
369
|
-
if attributes.key?(:'
|
370
|
-
self.
|
453
|
+
if attributes.key?(:'tin_match')
|
454
|
+
self.tin_match = attributes[:'tin_match']
|
371
455
|
end
|
372
456
|
|
373
|
-
if attributes.key?(:'
|
374
|
-
self.
|
457
|
+
if attributes.key?(:'no_tin')
|
458
|
+
self.no_tin = attributes[:'no_tin']
|
375
459
|
end
|
376
460
|
|
377
|
-
if attributes.key?(:'
|
378
|
-
self.
|
461
|
+
if attributes.key?(:'address_verification')
|
462
|
+
self.address_verification = attributes[:'address_verification']
|
379
463
|
end
|
380
464
|
|
381
|
-
if attributes.key?(:'
|
382
|
-
self.
|
465
|
+
if attributes.key?(:'state_and_local_withholding')
|
466
|
+
self.state_and_local_withholding = attributes[:'state_and_local_withholding']
|
383
467
|
end
|
384
468
|
|
385
|
-
if attributes.key?(:'
|
386
|
-
self.
|
469
|
+
if attributes.key?(:'second_tin_notice')
|
470
|
+
self.second_tin_notice = attributes[:'second_tin_notice']
|
387
471
|
end
|
388
472
|
|
389
|
-
if attributes.key?(:'
|
390
|
-
self.
|
473
|
+
if attributes.key?(:'federal_efile_status')
|
474
|
+
self.federal_efile_status = attributes[:'federal_efile_status']
|
391
475
|
end
|
392
476
|
|
393
|
-
if attributes.key?(:'
|
394
|
-
|
477
|
+
if attributes.key?(:'state_efile_status')
|
478
|
+
if (value = attributes[:'state_efile_status']).is_a?(Array)
|
479
|
+
self.state_efile_status = value
|
480
|
+
end
|
395
481
|
end
|
396
482
|
|
397
|
-
if attributes.key?(:'
|
398
|
-
self.
|
483
|
+
if attributes.key?(:'postal_mail_status')
|
484
|
+
self.postal_mail_status = attributes[:'postal_mail_status']
|
399
485
|
end
|
400
486
|
|
401
|
-
if attributes.key?(:'
|
402
|
-
self.
|
487
|
+
if attributes.key?(:'tin_match_status')
|
488
|
+
self.tin_match_status = attributes[:'tin_match_status']
|
403
489
|
end
|
404
490
|
|
405
|
-
if attributes.key?(:'
|
406
|
-
self.
|
491
|
+
if attributes.key?(:'address_verification_status')
|
492
|
+
self.address_verification_status = attributes[:'address_verification_status']
|
493
|
+
end
|
494
|
+
|
495
|
+
if attributes.key?(:'e_delivery_status')
|
496
|
+
self.e_delivery_status = attributes[:'e_delivery_status']
|
407
497
|
end
|
408
498
|
|
409
499
|
if attributes.key?(:'validation_errors')
|
@@ -419,10 +509,6 @@ module AvalaraSdk::A1099::V2
|
|
419
509
|
if attributes.key?(:'updated_at')
|
420
510
|
self.updated_at = attributes[:'updated_at']
|
421
511
|
end
|
422
|
-
|
423
|
-
if attributes.key?(:'state_and_local_withholding')
|
424
|
-
self.state_and_local_withholding = attributes[:'state_and_local_withholding']
|
425
|
-
end
|
426
512
|
end
|
427
513
|
|
428
514
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -430,6 +516,10 @@ module AvalaraSdk::A1099::V2
|
|
430
516
|
def list_invalid_properties
|
431
517
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
432
518
|
invalid_properties = Array.new
|
519
|
+
if @type.nil?
|
520
|
+
invalid_properties.push('invalid value for "type", type cannot be nil.')
|
521
|
+
end
|
522
|
+
|
433
523
|
invalid_properties
|
434
524
|
end
|
435
525
|
|
@@ -437,9 +527,34 @@ module AvalaraSdk::A1099::V2
|
|
437
527
|
# @return true if the model is valid
|
438
528
|
def valid?
|
439
529
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
530
|
+
return false if @type.nil?
|
531
|
+
type_validator = EnumAttributeValidator.new('String', ["1099-NEC", "1099-MISC", "1099-DIV", "1099-R", "1099-K", "1095-B", "1042-S", "1095-C", "1099-INT"])
|
532
|
+
return false unless type_validator.valid?(@type)
|
533
|
+
tin_type_validator = EnumAttributeValidator.new('String', ["Empty", "EIN", "SSN", "ITIN", "ATIN"])
|
534
|
+
return false unless tin_type_validator.valid?(@tin_type)
|
440
535
|
true
|
441
536
|
end
|
442
537
|
|
538
|
+
# Custom attribute writer method checking allowed values (enum).
|
539
|
+
# @param [Object] type Object to be assigned
|
540
|
+
def type=(type)
|
541
|
+
validator = EnumAttributeValidator.new('String', ["1099-NEC", "1099-MISC", "1099-DIV", "1099-R", "1099-K", "1095-B", "1042-S", "1095-C", "1099-INT"])
|
542
|
+
unless validator.valid?(type)
|
543
|
+
fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
|
544
|
+
end
|
545
|
+
@type = type
|
546
|
+
end
|
547
|
+
|
548
|
+
# Custom attribute writer method checking allowed values (enum).
|
549
|
+
# @param [Object] tin_type Object to be assigned
|
550
|
+
def tin_type=(tin_type)
|
551
|
+
validator = EnumAttributeValidator.new('String', ["Empty", "EIN", "SSN", "ITIN", "ATIN"])
|
552
|
+
unless validator.valid?(tin_type)
|
553
|
+
fail ArgumentError, "invalid value for \"tin_type\", must be one of #{validator.allowable_values}."
|
554
|
+
end
|
555
|
+
@tin_type = tin_type
|
556
|
+
end
|
557
|
+
|
443
558
|
# Custom attribute writer method with validation
|
444
559
|
# @param [Object] state_efile_status Value to be assigned
|
445
560
|
def state_efile_status=(state_efile_status)
|
@@ -458,47 +573,47 @@ module AvalaraSdk::A1099::V2
|
|
458
573
|
return true if self.equal?(o)
|
459
574
|
self.class == o.class &&
|
460
575
|
nonemployee_compensation == o.nonemployee_compensation &&
|
461
|
-
federal_income_tax_withheld == o.federal_income_tax_withheld &&
|
462
576
|
direct_sales_indicator == o.direct_sales_indicator &&
|
463
|
-
|
577
|
+
federal_income_tax_withheld == o.federal_income_tax_withheld &&
|
464
578
|
type == o.type &&
|
579
|
+
id == o.id &&
|
465
580
|
issuer_id == o.issuer_id &&
|
466
581
|
issuer_reference_id == o.issuer_reference_id &&
|
467
582
|
issuer_tin == o.issuer_tin &&
|
468
583
|
tax_year == o.tax_year &&
|
469
|
-
federal_efile == o.federal_efile &&
|
470
|
-
federal_efile_status == o.federal_efile_status &&
|
471
|
-
state_efile == o.state_efile &&
|
472
|
-
state_efile_status == o.state_efile_status &&
|
473
|
-
postal_mail == o.postal_mail &&
|
474
|
-
postal_mail_status == o.postal_mail_status &&
|
475
|
-
tin_match == o.tin_match &&
|
476
|
-
tin_match_status == o.tin_match_status &&
|
477
|
-
address_verification == o.address_verification &&
|
478
|
-
address_verification_status == o.address_verification_status &&
|
479
|
-
e_delivery_status == o.e_delivery_status &&
|
480
584
|
reference_id == o.reference_id &&
|
481
|
-
email == o.email &&
|
482
|
-
tin_type == o.tin_type &&
|
483
|
-
fatca_filing_requirement == o.fatca_filing_requirement &&
|
484
585
|
tin == o.tin &&
|
485
|
-
no_tin == o.no_tin &&
|
486
|
-
second_tin_notice == o.second_tin_notice &&
|
487
586
|
recipient_name == o.recipient_name &&
|
587
|
+
tin_type == o.tin_type &&
|
488
588
|
recipient_second_name == o.recipient_second_name &&
|
489
589
|
address == o.address &&
|
490
590
|
address2 == o.address2 &&
|
491
591
|
city == o.city &&
|
492
592
|
state == o.state &&
|
493
593
|
zip == o.zip &&
|
494
|
-
|
495
|
-
country_code == o.country_code &&
|
594
|
+
email == o.email &&
|
496
595
|
account_number == o.account_number &&
|
497
596
|
office_code == o.office_code &&
|
597
|
+
non_us_province == o.non_us_province &&
|
598
|
+
country_code == o.country_code &&
|
599
|
+
federal_efile_date == o.federal_efile_date &&
|
600
|
+
postal_mail == o.postal_mail &&
|
601
|
+
state_efile_date == o.state_efile_date &&
|
602
|
+
recipient_edelivery_date == o.recipient_edelivery_date &&
|
603
|
+
tin_match == o.tin_match &&
|
604
|
+
no_tin == o.no_tin &&
|
605
|
+
address_verification == o.address_verification &&
|
606
|
+
state_and_local_withholding == o.state_and_local_withholding &&
|
607
|
+
second_tin_notice == o.second_tin_notice &&
|
608
|
+
federal_efile_status == o.federal_efile_status &&
|
609
|
+
state_efile_status == o.state_efile_status &&
|
610
|
+
postal_mail_status == o.postal_mail_status &&
|
611
|
+
tin_match_status == o.tin_match_status &&
|
612
|
+
address_verification_status == o.address_verification_status &&
|
613
|
+
e_delivery_status == o.e_delivery_status &&
|
498
614
|
validation_errors == o.validation_errors &&
|
499
615
|
created_at == o.created_at &&
|
500
|
-
updated_at == o.updated_at
|
501
|
-
state_and_local_withholding == o.state_and_local_withholding
|
616
|
+
updated_at == o.updated_at
|
502
617
|
end
|
503
618
|
|
504
619
|
# @see the `==` method
|
@@ -510,7 +625,7 @@ module AvalaraSdk::A1099::V2
|
|
510
625
|
# Calculates hash code according to all attributes.
|
511
626
|
# @return [Integer] Hash code
|
512
627
|
def hash
|
513
|
-
[nonemployee_compensation, federal_income_tax_withheld,
|
628
|
+
[nonemployee_compensation, direct_sales_indicator, federal_income_tax_withheld, type, id, issuer_id, issuer_reference_id, issuer_tin, tax_year, reference_id, tin, recipient_name, tin_type, recipient_second_name, address, address2, city, state, zip, email, account_number, office_code, non_us_province, country_code, federal_efile_date, postal_mail, state_efile_date, recipient_edelivery_date, tin_match, no_tin, address_verification, state_and_local_withholding, second_tin_notice, federal_efile_status, state_efile_status, postal_mail_status, tin_match_status, address_verification_status, e_delivery_status, validation_errors, created_at, updated_at].hash
|
514
629
|
end
|
515
630
|
|
516
631
|
# Builds the object from hash
|