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
@@ -0,0 +1,91 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::JobsApi
|
2
|
+
|
3
|
+
All URIs are relative to *https://api.sbx.avalara.com/avalara1099*
|
4
|
+
|
5
|
+
| Method | HTTP request | Description |
|
6
|
+
| ------ | ------------ | ----------- |
|
7
|
+
| [**get_job**](JobsApi.md#get_job) | **GET** /jobs/{id} | Retrieves information about the job |
|
8
|
+
|
9
|
+
|
10
|
+
## get_job
|
11
|
+
|
12
|
+
> <JobResponse> get_job(id, avalara_version, opts)
|
13
|
+
|
14
|
+
Retrieves information about the job
|
15
|
+
|
16
|
+
Retrieves information about the job
|
17
|
+
|
18
|
+
### Examples
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
require 'time'
|
22
|
+
require 'avalara_sdk'
|
23
|
+
# setup authorization
|
24
|
+
AvalaraSdk::A1099::V2.configure do |config|
|
25
|
+
# See Documentation for Authorization section in main README.md for more auth examples.
|
26
|
+
config.bearer_token='<Your Avalara Identity Access Token>'
|
27
|
+
config.environment='sandbox'
|
28
|
+
config.app_name='testApp'
|
29
|
+
config.app_version='1.2.3'
|
30
|
+
config.machine_name='testMachine'
|
31
|
+
end
|
32
|
+
|
33
|
+
api_client = AvalaraSdk::ApiClient.new config
|
34
|
+
api_instance = AvalaraSdk::A1099::V2::JobsApi.new api_client
|
35
|
+
|
36
|
+
id = 'id_example' # String | Job id obtained from other API responses, like `/1099/bulk-upsert`.
|
37
|
+
avalara_version = '2.0.0' # String | API version
|
38
|
+
opts = {
|
39
|
+
x_correlation_id: 'b5e99bb8-41d6-4f87-8677-070497e8fba3', # String | Unique correlation Id in a GUID format
|
40
|
+
x_avalara_client: 'Swagger UI; 22.1.0' # String | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .
|
41
|
+
}
|
42
|
+
|
43
|
+
begin
|
44
|
+
# Retrieves information about the job
|
45
|
+
result = api_instance.get_job(id, avalara_version, opts)
|
46
|
+
p result
|
47
|
+
rescue AvalaraSdk::ApiError => e
|
48
|
+
puts "Error when calling JobsApi->get_job: #{e}"
|
49
|
+
end
|
50
|
+
```
|
51
|
+
|
52
|
+
#### Using the get_job_with_http_info variant
|
53
|
+
|
54
|
+
This returns an Array which contains the response data, status code and headers.
|
55
|
+
|
56
|
+
> <Array(<JobResponse>, Integer, Hash)> get_job_with_http_info(id, avalara_version, opts)
|
57
|
+
|
58
|
+
```ruby
|
59
|
+
begin
|
60
|
+
# Retrieves information about the job
|
61
|
+
data, status_code, headers = api_instance.get_job_with_http_info(id, avalara_version, opts)
|
62
|
+
p status_code # => 2xx
|
63
|
+
p headers # => { ... }
|
64
|
+
p data # => <JobResponse>
|
65
|
+
rescue AvalaraSdk::A1099::V2::ApiError => e
|
66
|
+
puts "Error when calling JobsApi->get_job_with_http_info: #{e}"
|
67
|
+
end
|
68
|
+
```
|
69
|
+
|
70
|
+
### Parameters
|
71
|
+
|
72
|
+
| Name | Type | Description | Notes |
|
73
|
+
| ---- | ---- | ----------- | ----- |
|
74
|
+
| **id** | **String** | Job id obtained from other API responses, like `/1099/bulk-upsert`. | |
|
75
|
+
| **avalara_version** | **String** | API version | |
|
76
|
+
| **x_correlation_id** | **String** | Unique correlation Id in a GUID format | [optional] |
|
77
|
+
| **x_avalara_client** | **String** | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . | [optional] |
|
78
|
+
|
79
|
+
### Return type
|
80
|
+
|
81
|
+
[**JobResponse**](JobResponse.md)
|
82
|
+
|
83
|
+
### Authorization
|
84
|
+
|
85
|
+
[bearer](../../../README.md#documentation-for-authorization)
|
86
|
+
|
87
|
+
### HTTP request headers
|
88
|
+
|
89
|
+
- **Content-Type**: Not defined
|
90
|
+
- **Accept**: application/json
|
91
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::OfferAndCoverage
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **id** | **Integer** | Id | [optional][readonly] |
|
8
|
+
| **month** | **String** | Month of coverage. Available values: - All: All months - January: January - February: February - March: March - April: April - May: May - June: June - July: July - August: August - September: September - October: October - November: November - December: December | [optional] |
|
9
|
+
| **offer_code** | **String** | Offer of Coverage Code. Required if Share has a value, including zero. Available values: Pre-ICHRA Codes (available before 2020): - 1A: Qualifying offer: minimum essential coverage providing minimum value offered to full-time employee with employee required contribution ≤ 9.5% (as adjusted) of mainland single federal poverty line and at least minimum essential coverage offered to spouse and dependent(s) - 1B: Minimum essential coverage providing minimum value offered to employee only - 1C: Minimum essential coverage providing minimum value offered to employee and at least minimum essential coverage offered to dependent(s) (not spouse) - 1D: Minimum essential coverage providing minimum value offered to employee and at least minimum essential coverage offered to spouse (not dependent(s)) - 1E: Minimum essential coverage providing minimum value offered to employee and at least minimum essential coverage offered to dependent(s) and spouse - 1F: Minimum essential coverage NOT providing minimum value offered to employee; employee and spouse or dependent(s); or employee, spouse, and dependents - 1G: Offer of coverage to an individual who was not an employee or not a full-time employee and who enrolled in self-insured coverage - 1H: No offer of coverage (employee not offered any health coverage or employee offered coverage that is not minimum essential coverage) - 1J: Minimum essential coverage providing minimum value offered to employee and at least minimum essential coverage conditionally offered to spouse; minimum essential coverage not offered to dependent(s) - 1K: Minimum essential coverage providing minimum value offered to employee; at least minimum essential coverage offered to dependents; and at least minimum essential coverage conditionally offered to spouse ICHRA Codes (introduced 2020, require ZIP code): - 1L: Individual coverage HRA offered to employee only - 1M: Individual coverage HRA offered to employee and dependent(s) (not spouse) - 1N: Individual coverage HRA offered to employee, spouse, and dependent(s) - 1O: Individual coverage HRA offered to employee only using employment site ZIP code affordability safe harbor - 1P: Individual coverage HRA offered to employee and dependent(s) (not spouse) using employment site ZIP code affordability safe harbor - 1Q: Individual coverage HRA offered to employee, spouse, and dependent(s) using employment site ZIP code affordability safe harbor - 1R: Individual coverage HRA that is NOT affordable - 1S: Individual coverage HRA offered to an individual who was not a full-time employee - 1T: Individual coverage HRA offered to employee and spouse (not dependents) - 1U: Individual coverage HRA offered to employee and spouse (not dependents) using employment site ZIP code affordability safe harbor Note: Codes 1B, 1C, 1D, 1E, 1J, 1K, 1L, 1M, 1N, 1O, 1P, 1Q, 1T, 1U require employee share amount (0.00 is a valid value). | [optional] |
|
10
|
+
| **share** | **Float** | Employee required contribution share - Employee Share of Lowest Cost Monthly Premium, for Self-Only Minimum Value Coverage - May not exceed 3499.99 | [optional] |
|
11
|
+
| **safe_harbor_code** | **String** | Safe harbor code - Applicable Section 4980H Safe Harbor Code. Available values: - 2A: Form W-2 safe harbor - 2B: Federal poverty line safe harbor - 2C: Rate of pay safe harbor - 2D: Part-time employee safe harbor for employees who were not full-time for any month of the year - 2E: Multiemployer interim rule relief - 2F: Qualifying offer method - 2G: Qualifying offer transition relief - 2H: Other affordability safe harbor | [optional] |
|
12
|
+
| **zip_code** | **String** | ZIP/postal code. For coverage area (optional, unless codes 1L to 1U are used). | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'avalara_sdk'
|
18
|
+
|
19
|
+
instance = AvalaraSdk::A1099::V2::OfferAndCoverage.new(
|
20
|
+
id: null,
|
21
|
+
month: null,
|
22
|
+
offer_code: null,
|
23
|
+
share: null,
|
24
|
+
safe_harbor_code: null,
|
25
|
+
zip_code: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::PaginatedQueryResultModelForm1099Base
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **recordset_count** | **Integer** | | [optional] |
|
8
|
+
| **value** | [**Array<Get1099Form200Response>**](Get1099Form200Response.md) | | [optional] |
|
9
|
+
| **next_link** | **String** | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'avalara_sdk'
|
15
|
+
|
16
|
+
instance = AvalaraSdk::A1099::V2::PaginatedQueryResultModelForm1099Base.new(
|
17
|
+
recordset_count: null,
|
18
|
+
value: null,
|
19
|
+
next_link: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **
|
8
|
-
| **
|
7
|
+
| **name** | **String** | Name of the primary withholding agent | |
|
8
|
+
| **ein** | **String** | EIN (Employer Identification Number) of the primary withholding agent. | |
|
9
9
|
|
10
10
|
## Example
|
11
11
|
|
@@ -13,8 +13,8 @@
|
|
13
13
|
require 'avalara_sdk'
|
14
14
|
|
15
15
|
instance = AvalaraSdk::A1099::V2::PrimaryWithholdingAgent.new(
|
16
|
-
|
17
|
-
|
16
|
+
name: null,
|
17
|
+
ein: null
|
18
18
|
)
|
19
19
|
```
|
20
20
|
|
@@ -4,14 +4,14 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **state_tax_withheld** | **Float** |
|
8
|
-
| **state** | **String** |
|
9
|
-
| **state_id_number** | **String** |
|
10
|
-
| **state_income** | **Float** |
|
11
|
-
| **local_tax_withheld** | **Float** |
|
12
|
-
| **locality** | **String** |
|
13
|
-
| **locality_id_number** | **String** |
|
14
|
-
| **local_income** | **Float** |
|
7
|
+
| **state_tax_withheld** | **Float** | Amount of state tax that was withheld | [optional] |
|
8
|
+
| **state** | **String** | US state | [optional] |
|
9
|
+
| **state_id_number** | **String** | State ID number of the entity issuing the form | [optional] |
|
10
|
+
| **state_income** | **Float** | Amount of state income | [optional] |
|
11
|
+
| **local_tax_withheld** | **Float** | Amount of local tax that was withheld | [optional] |
|
12
|
+
| **locality** | **String** | Locality name | [optional] |
|
13
|
+
| **locality_id_number** | **String** | Locality ID number of the entity issuing the form | [optional] |
|
14
|
+
| **local_income** | **Float** | Amount of local income | [optional] |
|
15
15
|
|
16
16
|
## Example
|
17
17
|
|
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **field** | **String** |
|
8
|
-
| **errors** | **Array<String>** |
|
7
|
+
| **field** | **String** | The field containing the error | [optional] |
|
8
|
+
| **errors** | **Array<String>** | The list of error messages | [optional] |
|
9
9
|
|
10
10
|
## Example
|
11
11
|
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::W4FormMinimalRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **type** | **String** | The form type (always \"w4\" for this model). | [optional][readonly] |
|
8
|
+
| **email** | **String** | The email address of the individual associated with the form. | |
|
9
|
+
| **employee_first_name** | **String** | The first name of the employee. | |
|
10
|
+
| **employee_last_name** | **String** | The last name of the employee. | |
|
11
|
+
| **office_code** | **String** | The office code associated with the form. | [optional] |
|
12
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
13
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
14
|
+
|
15
|
+
## Example
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
require 'avalara_sdk'
|
19
|
+
|
20
|
+
instance = AvalaraSdk::A1099::V2::W4FormMinimalRequest.new(
|
21
|
+
type: W4,
|
22
|
+
email: null,
|
23
|
+
employee_first_name: null,
|
24
|
+
employee_last_name: null,
|
25
|
+
office_code: null,
|
26
|
+
company_id: null,
|
27
|
+
reference_id: null
|
28
|
+
)
|
29
|
+
```
|
30
|
+
|
@@ -24,11 +24,11 @@
|
|
24
24
|
| **additional_withheld** | **Float** | The additional amount withheld. | [optional] |
|
25
25
|
| **exempt_from_withholding** | **Boolean** | Indicates whether the employee is exempt from withholding. | [optional] |
|
26
26
|
| **office_code** | **String** | The office code associated with the form. | [optional] |
|
27
|
-
| **company_id** | **String** | The ID of the associated company. | [optional] |
|
28
|
-
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
29
|
-
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
30
27
|
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
31
28
|
| **signature** | **String** | The signature of the form. | [optional] |
|
29
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
30
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
31
|
+
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
32
32
|
|
33
33
|
## Example
|
34
34
|
|
@@ -56,11 +56,11 @@ instance = AvalaraSdk::A1099::V2::W4FormRequest.new(
|
|
56
56
|
additional_withheld: null,
|
57
57
|
exempt_from_withholding: null,
|
58
58
|
office_code: null,
|
59
|
+
e_delivery_consented_at: null,
|
60
|
+
signature: null,
|
59
61
|
company_id: null,
|
60
62
|
reference_id: null,
|
61
|
-
email: null
|
62
|
-
e_delivery_consented_at: null,
|
63
|
-
signature: null
|
63
|
+
email: null
|
64
64
|
)
|
65
65
|
```
|
66
66
|
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::W8BenEFormMinimalRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **type** | **String** | The form type (always \"w8bene\" for this model). | [optional][readonly] |
|
8
|
+
| **email** | **String** | The email address of the individual associated with the form. | |
|
9
|
+
| **name** | **String** | The name of the individual or entity associated with the form. | |
|
10
|
+
| **reference_number** | **String** | A reference number for the form. | [optional] |
|
11
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
12
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'avalara_sdk'
|
18
|
+
|
19
|
+
instance = AvalaraSdk::A1099::V2::W8BenEFormMinimalRequest.new(
|
20
|
+
type: W4,
|
21
|
+
email: null,
|
22
|
+
name: null,
|
23
|
+
reference_number: null,
|
24
|
+
company_id: null,
|
25
|
+
reference_id: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -100,11 +100,11 @@
|
|
100
100
|
| **substantial_us_owners** | [**Array<SubstantialUsOwnerRequest>**](SubstantialUsOwnerRequest.md) | The list of substantial U.S. owners of passive NFFE. | [optional] |
|
101
101
|
| **signer_name** | **String** | The name of the signer. | [optional] |
|
102
102
|
| **capacity_to_sign_certification** | **Boolean** | Certifies signer has the capacity to sign for the beneficial owner. | [optional] |
|
103
|
-
| **company_id** | **String** | The ID of the associated company. | [optional] |
|
104
|
-
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
105
|
-
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
106
103
|
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
107
104
|
| **signature** | **String** | The signature of the form. | [optional] |
|
105
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
106
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
107
|
+
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
108
108
|
|
109
109
|
## Example
|
110
110
|
|
@@ -208,11 +208,11 @@ instance = AvalaraSdk::A1099::V2::W8BenEFormRequest.new(
|
|
208
208
|
substantial_us_owners: null,
|
209
209
|
signer_name: null,
|
210
210
|
capacity_to_sign_certification: null,
|
211
|
+
e_delivery_consented_at: null,
|
212
|
+
signature: null,
|
211
213
|
company_id: null,
|
212
214
|
reference_id: null,
|
213
|
-
email: null
|
214
|
-
e_delivery_consented_at: null,
|
215
|
-
signature: null
|
215
|
+
email: null
|
216
216
|
)
|
217
217
|
```
|
218
218
|
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::W8BenFormMinimalRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **type** | **String** | The form type (always \"w8ben\" for this model). | [optional][readonly] |
|
8
|
+
| **email** | **String** | The email address of the individual associated with the form. | |
|
9
|
+
| **name** | **String** | The name of the individual or entity associated with the form. | |
|
10
|
+
| **reference_number** | **String** | A reference number for the form. | [optional] |
|
11
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
12
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'avalara_sdk'
|
18
|
+
|
19
|
+
instance = AvalaraSdk::A1099::V2::W8BenFormMinimalRequest.new(
|
20
|
+
type: W4,
|
21
|
+
email: null,
|
22
|
+
name: null,
|
23
|
+
reference_number: null,
|
24
|
+
company_id: null,
|
25
|
+
reference_id: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -29,11 +29,11 @@
|
|
29
29
|
| **withholding_rate** | **String** | The withholding rate applied as per the treaty. | [optional] |
|
30
30
|
| **income_type** | **String** | The type of income covered by the treaty. | [optional] |
|
31
31
|
| **signer_name** | **String** | The name of the signer of the form. | [optional] |
|
32
|
-
| **company_id** | **String** | The ID of the associated company. | [optional] |
|
33
|
-
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
34
|
-
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
35
32
|
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
36
33
|
| **signature** | **String** | The signature of the form. | [optional] |
|
34
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
35
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
36
|
+
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
37
37
|
|
38
38
|
## Example
|
39
39
|
|
@@ -66,11 +66,11 @@ instance = AvalaraSdk::A1099::V2::W8BenFormRequest.new(
|
|
66
66
|
withholding_rate: null,
|
67
67
|
income_type: null,
|
68
68
|
signer_name: null,
|
69
|
+
e_delivery_consented_at: null,
|
70
|
+
signature: null,
|
69
71
|
company_id: null,
|
70
72
|
reference_id: null,
|
71
|
-
email: null
|
72
|
-
e_delivery_consented_at: null,
|
73
|
-
signature: null
|
73
|
+
email: null
|
74
74
|
)
|
75
75
|
```
|
76
76
|
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::W8ImyFormMinimalRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **type** | **String** | The form type (always \"w8imy\" for this model). | [optional][readonly] |
|
8
|
+
| **email** | **String** | The email address of the individual associated with the form. | |
|
9
|
+
| **name** | **String** | The name of the individual or entity associated with the form. | |
|
10
|
+
| **reference_number** | **String** | A reference number for the form. | [optional] |
|
11
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
12
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'avalara_sdk'
|
18
|
+
|
19
|
+
instance = AvalaraSdk::A1099::V2::W8ImyFormMinimalRequest.new(
|
20
|
+
type: W4,
|
21
|
+
email: null,
|
22
|
+
name: null,
|
23
|
+
reference_number: null,
|
24
|
+
company_id: null,
|
25
|
+
reference_id: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -116,11 +116,11 @@
|
|
116
116
|
| **sponsored_direct_reporting_nffe_certification** | **Boolean** | Certifies that the entity is a sponsored direct reporting NFFE. | [optional] |
|
117
117
|
| **direct_reporting_nffe_sponsoring_entity** | **String** | The name of the entity that sponsors the direct reporting NFFE. | [optional] |
|
118
118
|
| **signer_name** | **String** | The name of the signer. | [optional] |
|
119
|
-
| **company_id** | **String** | The ID of the associated company. | [optional] |
|
120
|
-
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
121
|
-
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
122
119
|
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
123
120
|
| **signature** | **String** | The signature of the form. | [optional] |
|
121
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
122
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
123
|
+
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
124
124
|
|
125
125
|
## Example
|
126
126
|
|
@@ -240,11 +240,11 @@ instance = AvalaraSdk::A1099::V2::W8ImyFormRequest.new(
|
|
240
240
|
sponsored_direct_reporting_nffe_certification: null,
|
241
241
|
direct_reporting_nffe_sponsoring_entity: null,
|
242
242
|
signer_name: null,
|
243
|
+
e_delivery_consented_at: null,
|
244
|
+
signature: null,
|
243
245
|
company_id: null,
|
244
246
|
reference_id: null,
|
245
|
-
email: null
|
246
|
-
e_delivery_consented_at: null,
|
247
|
-
signature: null
|
247
|
+
email: null
|
248
248
|
)
|
249
249
|
```
|
250
250
|
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::W9FormBaseMinimalRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **type** | **String** | The form type. | [optional][readonly] |
|
8
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
9
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
10
|
+
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
11
|
+
|
12
|
+
## Example
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
require 'avalara_sdk'
|
16
|
+
|
17
|
+
instance = AvalaraSdk::A1099::V2::W9FormBaseMinimalRequest.new(
|
18
|
+
type: W4,
|
19
|
+
company_id: null,
|
20
|
+
reference_id: null,
|
21
|
+
email: null
|
22
|
+
)
|
23
|
+
```
|
24
|
+
|
@@ -4,12 +4,12 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
8
|
+
| **signature** | **String** | The signature of the form. | [optional] |
|
7
9
|
| **type** | **String** | The form type. | [optional][readonly] |
|
8
|
-
| **company_id** | **String** | The ID of the associated company. |
|
10
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
9
11
|
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
10
12
|
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
11
|
-
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
12
|
-
| **signature** | **String** | The signature of the form. | [optional] |
|
13
13
|
|
14
14
|
## Example
|
15
15
|
|
@@ -17,12 +17,12 @@
|
|
17
17
|
require 'avalara_sdk'
|
18
18
|
|
19
19
|
instance = AvalaraSdk::A1099::V2::W9FormBaseRequest.new(
|
20
|
+
e_delivery_consented_at: null,
|
21
|
+
signature: null,
|
20
22
|
type: W4,
|
21
23
|
company_id: null,
|
22
24
|
reference_id: null,
|
23
|
-
email: null
|
24
|
-
e_delivery_consented_at: null,
|
25
|
-
signature: null
|
25
|
+
email: null
|
26
26
|
)
|
27
27
|
```
|
28
28
|
|
@@ -5,13 +5,13 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **id** | **String** | The unique identifier for the form. | [optional] |
|
8
|
-
| **entry_status** | **
|
9
|
-
| **entry_status_date** | **Time** | The timestamp for the latest status update. | [optional] |
|
8
|
+
| **entry_status** | [**EntryStatusResponse**](EntryStatusResponse.md) | The entry status information for the form. | [optional] |
|
10
9
|
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
11
10
|
| **company_id** | **String** | The ID of the associated company. | [optional] |
|
12
11
|
| **display_name** | **String** | The display name associated with the form. | [optional] |
|
13
12
|
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
14
13
|
| **archived** | **Boolean** | Indicates whether the form is archived. | [optional] |
|
14
|
+
| **ancestor_id** | **String** | Form ID of previous version. | [optional] |
|
15
15
|
| **signature** | **String** | The signature of the form. | [optional] |
|
16
16
|
| **signed_date** | **Time** | The date the form was signed. | [optional] |
|
17
17
|
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
@@ -27,12 +27,12 @@ require 'avalara_sdk'
|
|
27
27
|
instance = AvalaraSdk::A1099::V2::W9FormBaseResponse.new(
|
28
28
|
id: null,
|
29
29
|
entry_status: null,
|
30
|
-
entry_status_date: null,
|
31
30
|
reference_id: null,
|
32
31
|
company_id: null,
|
33
32
|
display_name: null,
|
34
33
|
email: null,
|
35
34
|
archived: null,
|
35
|
+
ancestor_id: null,
|
36
36
|
signature: null,
|
37
37
|
signed_date: null,
|
38
38
|
e_delivery_consented_at: null,
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::W9FormMinimalRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **type** | **String** | The form type (always \"w9\" for this model). | [optional][readonly] |
|
8
|
+
| **email** | **String** | The email address of the individual associated with the form. | |
|
9
|
+
| **name** | **String** | The name of the individual or entity associated with the form. | |
|
10
|
+
| **account_number** | **String** | The account number associated with the form. | [optional] |
|
11
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
12
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'avalara_sdk'
|
18
|
+
|
19
|
+
instance = AvalaraSdk::A1099::V2::W9FormMinimalRequest.new(
|
20
|
+
type: W4,
|
21
|
+
email: null,
|
22
|
+
name: null,
|
23
|
+
account_number: null,
|
24
|
+
company_id: null,
|
25
|
+
reference_id: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -23,11 +23,11 @@
|
|
23
23
|
| **tin** | **String** | The taxpayer identification number (TIN). | [optional] |
|
24
24
|
| **backup_withholding** | **Boolean** | Indicates whether backup withholding applies. | [optional] |
|
25
25
|
| **is1099able** | **Boolean** | Indicates whether the individual or entity should be issued a 1099 form. | [optional] |
|
26
|
-
| **company_id** | **String** | The ID of the associated company. | [optional] |
|
27
|
-
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
28
|
-
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
29
26
|
| **e_delivery_consented_at** | **Time** | The date when e-delivery was consented. | [optional] |
|
30
27
|
| **signature** | **String** | The signature of the form. | [optional] |
|
28
|
+
| **company_id** | **String** | The ID of the associated company. | |
|
29
|
+
| **reference_id** | **String** | A reference identifier for the form. | [optional] |
|
30
|
+
| **email** | **String** | The email address of the individual associated with the form. | [optional] |
|
31
31
|
|
32
32
|
## Example
|
33
33
|
|
@@ -54,11 +54,11 @@ instance = AvalaraSdk::A1099::V2::W9FormRequest.new(
|
|
54
54
|
tin: null,
|
55
55
|
backup_withholding: null,
|
56
56
|
is1099able: null,
|
57
|
+
e_delivery_consented_at: null,
|
58
|
+
signature: null,
|
57
59
|
company_id: null,
|
58
60
|
reference_id: null,
|
59
|
-
email: null
|
60
|
-
e_delivery_consented_at: null,
|
61
|
-
signature: null
|
61
|
+
email: null
|
62
62
|
)
|
63
63
|
```
|
64
64
|
|