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,49 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::CreateIssuerRequest
|
2
|
+
|
3
|
+
## Class instance methods
|
4
|
+
|
5
|
+
### `openapi_one_of`
|
6
|
+
|
7
|
+
Returns the list of classes defined in oneOf.
|
8
|
+
|
9
|
+
#### Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'avalara_sdk'
|
13
|
+
|
14
|
+
AvalaraSdk::A1099::V2::CreateIssuerRequest.openapi_one_of
|
15
|
+
# =>
|
16
|
+
# [
|
17
|
+
# :'IssuerCommand',
|
18
|
+
# :'IssuerResponse'
|
19
|
+
# ]
|
20
|
+
```
|
21
|
+
|
22
|
+
### build
|
23
|
+
|
24
|
+
Find the appropriate object from the `openapi_one_of` list and casts the data into it.
|
25
|
+
|
26
|
+
#### Example
|
27
|
+
|
28
|
+
```ruby
|
29
|
+
require 'avalara_sdk'
|
30
|
+
|
31
|
+
AvalaraSdk::A1099::V2::CreateIssuerRequest.build(data)
|
32
|
+
# => #<IssuerCommand:0x00007fdd4aab02a0>
|
33
|
+
|
34
|
+
AvalaraSdk::A1099::V2::CreateIssuerRequest.build(data_that_doesnt_match)
|
35
|
+
# => nil
|
36
|
+
```
|
37
|
+
|
38
|
+
#### Parameters
|
39
|
+
|
40
|
+
| Name | Type | Description |
|
41
|
+
| ---- | ---- | ----------- |
|
42
|
+
| **data** | **Mixed** | data to be matched against the list of oneOf items |
|
43
|
+
|
44
|
+
#### Return type
|
45
|
+
|
46
|
+
- `IssuerCommand`
|
47
|
+
- `IssuerResponse`
|
48
|
+
- `nil` (if no type matches)
|
49
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::EntryStatusResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **status** | **String** | The form status. | [optional] |
|
8
|
+
| **time** | **Time** | The timestamp for the latest status update. | [optional] |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'avalara_sdk'
|
14
|
+
|
15
|
+
instance = AvalaraSdk::A1099::V2::EntryStatusResponse.new(
|
16
|
+
status: null,
|
17
|
+
time: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
data/docs/A1099/V2/Form1042S.md
CHANGED
@@ -4,68 +4,68 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **
|
8
|
-
| **
|
9
|
-
| **
|
10
|
-
| **
|
11
|
-
| **
|
12
|
-
| **
|
13
|
-
| **
|
14
|
-
| **
|
15
|
-
| **
|
16
|
-
| **
|
17
|
-
| **
|
18
|
-
| **
|
19
|
-
| **
|
20
|
-
| **
|
21
|
-
| **
|
22
|
-
| **
|
23
|
-
| **
|
24
|
-
| **
|
25
|
-
| **
|
26
|
-
| **
|
27
|
-
| **
|
28
|
-
| **
|
29
|
-
| **
|
30
|
-
| **
|
31
|
-
| **type** | **String** |
|
32
|
-
| **
|
33
|
-
| **
|
34
|
-
| **
|
35
|
-
| **
|
36
|
-
| **
|
37
|
-
| **
|
38
|
-
| **
|
39
|
-
| **
|
40
|
-
| **
|
41
|
-
| **
|
42
|
-
| **
|
43
|
-
| **
|
44
|
-
| **
|
45
|
-
| **
|
46
|
-
| **
|
47
|
-
| **
|
48
|
-
| **
|
49
|
-
| **
|
50
|
-
| **
|
51
|
-
| **
|
52
|
-
| **
|
53
|
-
| **
|
54
|
-
| **
|
55
|
-
| **
|
56
|
-
| **
|
57
|
-
| **
|
58
|
-
| **
|
59
|
-
| **
|
60
|
-
| **
|
61
|
-
| **
|
62
|
-
| **
|
63
|
-
| **
|
64
|
-
| **
|
65
|
-
| **
|
66
|
-
| **
|
67
|
-
| **
|
68
|
-
| **
|
7
|
+
| **tin_type** | **String** | | [optional][readonly] |
|
8
|
+
| **unique_form_id** | **String** | Unique form identifier | |
|
9
|
+
| **recipient_date_of_birth** | **Date** | Recipient's date of birth | [optional] |
|
10
|
+
| **recipient_giin** | **String** | Recipient's Global Intermediary Identification Number (GIIN). A valid GIIN looks like 'XXXXXX.XXXXX.XX.XXX'. | [optional] |
|
11
|
+
| **recipient_foreign_tin** | **String** | Recipient's foreign TIN. Required if email is specified, must fill either this or Chap3StatusCode. | [optional] |
|
12
|
+
| **lob_code** | **String** | Limitation on Benefits (LOB) code for tax treaty purposes. Available values: - 01: Individual (Deprecated - valid only for tax years prior to 2019) - 02: Government - contracting state/political subdivision/local authority - 03: Tax exempt pension trust/Pension fund - 04: Tax exempt/Charitable organization - 05: Publicly-traded corporation - 06: Subsidiary of publicly-traded corporation - 07: Company that meets the ownership and base erosion test - 08: Company that meets the derivative benefits test - 09: Company with an item of income that meets the active trade or business test - 10: Discretionary determination - 11: Other - 12: No LOB article in treaty | [optional] |
|
13
|
+
| **income_code** | **String** | Income code. Available values: Interest: - 01: Interest paid by US obligors - general - 02: Interest paid on real property mortgages - 03: Interest paid to controlling foreign corporations - 04: Interest paid by foreign corporations - 05: Interest on tax-free covenant bonds - 22: Interest paid on deposit with a foreign branch of a domestic corporation or partnership - 29: Deposit interest - 30: Original issue discount (OID) - 31: Short-term OID - 33: Substitute payment - interest - 51: Interest paid on certain actively traded or publicly offered securities(1) - 54: Substitute payments - interest from certain actively traded or publicly offered securities(1) Dividend: - 06: Dividends paid by U.S. corporations - general - 07: Dividends qualifying for direct dividend rate - 08: Dividends paid by foreign corporations - 34: Substitute payment - dividends - 40: Other dividend equivalents under IRC section 871(m) (formerly 871(l)) - 52: Dividends paid on certain actively traded or publicly offered securities(1) - 53: Substitute payments - dividends from certain actively traded or publicly offered securities(1) - 56: Dividend equivalents under IRC section 871(m) as a result of applying the combined transaction rules Other: - 09: Capital gains - 10: Industrial royalties - 11: Motion picture or television copyright royalties - 12: Other royalties (for example, copyright, software, broadcasting, endorsement payments) - 13: Royalties paid on certain publicly offered securities(1) - 14: Real property income and natural resources royalties - 15: Pensions, annuities, alimony, and/or insurance premiums - 16: Scholarship or fellowship grants - 17: Compensation for independent personal services(2) - 18: Compensation for dependent personal services(2) - 19: Compensation for teaching(2) - 20: Compensation during studying and training(2) - 23: Other income - 24: Qualified investment entity (QIE) distributions of capital gains - 25: Trust distributions subject to IRC section 1445 - 26: Unsevered growing crops and timber distributions by a trust subject to IRC section 1445 - 27: Publicly traded partnership distributions subject to IRC section 1446 - 28: Gambling winnings(3) - 32: Notional principal contract income(4) - 35: Substitute payment - other - 36: Capital gains distributions - 37: Return of capital - 38: Eligible deferred compensation items subject to IRC section 877A(d)(1) - 39: Distributions from a nongrantor trust subject to IRC section 877A(f)(1) - 41: Guarantee of indebtedness - 42: Earnings as an artist or athlete - no central withholding agreement(5) - 43: Earnings as an artist or athlete - central withholding agreement(5) - 44: Specified Federal procurement payments - 50: Income previously reported under escrow procedure(6) - 55: Taxable death benefits on life insurance contracts - 57: Amount realized under IRC section 1446(f) - 58: Publicly traded partnership distributions-undetermined | |
|
14
|
+
| **gross_income** | **Float** | Gross income | |
|
15
|
+
| **withholding_indicator** | **String** | Withholding indicator Available values: - 3: Chapter 3 - 4: Chapter 4 | |
|
16
|
+
| **tax_country_code** | **String** | Country code | |
|
17
|
+
| **exemption_code_chap3** | **String** | Exemption code (Chapter 3). Required if WithholdingIndicator is 3 (Chapter 3). Required when using TaxRateChap3. Available values: - Empty: Tax rate is due to backup withholding - 00: Not exempt - 01: Effectively connected income - 02: Exempt under IRC (other than portfolio interest) - 03: Income is not from US sources - 04: Exempt under tax treaty - 05: Portfolio interest exempt under IRC - 06: QI that assumes primary withholding responsibility - 07: WFP or WFT - 08: U.S. branch treated as U.S. Person - 09: Territory FI treated as U.S. Person - 10: QI represents that income is exempt - 11: QSL that assumes primary withholding responsibility - 12: Payee subjected to chapter 4 withholding - 22: QDD that assumes primary withholding responsibility - 23: Exempt under section 897(l) - 24: Exempt under section 892 | [optional] |
|
18
|
+
| **exemption_code_chap4** | **String** | Exemption code (Chapter 4). Required if WithholdingIndicator is 4 (Chapter 4). Available values: - 00: Not exempt - 13: Grandfathered payment - 14: Effectively connected income - 15: Payee not subject to chapter 4 withholding - 16: Excluded nonfinancial payment - 17: Foreign Entity that assumes primary withholding responsibility - 18: U.S. Payees - of participating FFI or registered deemed - compliant FFI - 19: Exempt from withholding under IGA(6) - 20: Dormant account(7) - 21: Other - payment not subject to chapter 4 withholding | [optional] |
|
19
|
+
| **tax_rate_chap3** | **String** | Tax rate (Chapter 3) - Required if WithholdingIndicator is 3 (Chapter 3). Available values: - 00.00: 0.00% - 02.00: 2.00% - 04.00: 4.00% - 04.90: 4.90% - 04.95: 4.95% - 05.00: 5.00% - 07.00: 7.00% - 08.00: 8.00% - 10.00: 10.00% - 12.00: 12.00% - 12.50: 12.50% - 14.00: 14.00% - 15.00: 15.00% - 17.50: 17.50% - 20.00: 20.00% - 21.00: 21.00% - 24.00: 24.00% - 25.00: 25.00% - 27.50: 27.50% - 28.00: 28.00% - 30.00: 30.00% - 37.00: 37.00% | [optional] |
|
20
|
+
| **withholding_allowance** | **Float** | Withholding allowance | [optional] |
|
21
|
+
| **federal_tax_withheld** | **Float** | Federal tax withheld | [optional] |
|
22
|
+
| **tax_not_deposited_indicator** | **Boolean** | Tax not deposited indicator | [optional] |
|
23
|
+
| **academic_indicator** | **Boolean** | Academic indicator | [optional] |
|
24
|
+
| **tax_withheld_other_agents** | **Float** | Tax withheld by other agents | [optional] |
|
25
|
+
| **amount_repaid** | **Float** | Amount repaid to recipient | [optional] |
|
26
|
+
| **tax_paid_agent** | **Float** | Tax paid by withholding agent | [optional] |
|
27
|
+
| **chap3_status_code** | **String** | Chapter 3 status code - Required if WithholdingIndicator is 3 (Chapter 3) Available values: - 01: U.S. Withholding Agent - FI (Deprecated - valid only for tax years prior to 2020) - 02: U.S. Withholding Agent - Other (Deprecated - valid only for tax years prior to 2020) - 03: Territory FI - treated as U.S. Person - 04: Territory FI - not treated as U.S. Person - 05: U.S. branch - treated as U.S. Person - 06: U.S. branch - not treated as U.S. Person - 07: U.S. branch - ECI presumption applied - 08: Partnership other than Withholding Foreign Partnership - 09: Withholding Foreign Partnership - 10: Trust other than Withholding Foreign Trust - 11: Withholding Foreign Trust - 12: Qualified Intermediary - 13: Qualified Securities Lender - Qualified Intermediary - 14: Qualified Securities Lender - Other - 15: Corporation - 16: Individual - 17: Estate - 18: Private Foundation - 19: Government or International Organization - 20: Tax Exempt Organization (Section 501(c) entities) - 21: Unknown Recipient - 22: Artist or Athlete - 23: Pension - 24: Foreign Central Bank of Issue - 25: Nonqualified Intermediary - 26: Hybrid entity making Treaty Claim - 27: Withholding Rate Pool - General - 28: Withholding Rate Pool - Exempt Organization - 29: PAI Withholding Rate Pool - General - 30: PAI Withholding Rate Pool - Exempt Organization - 31: Agency Withholding Rate Pool - General - 32: Agency Withholding Rate Pool - Exempt Organization - 34: U.S. Withholding Agent-Foreign branch of FI (Deprecated - valid only for tax years prior to 2020) - 35: Qualified Derivatives Dealer - 36: Foreign Government - Integral Part - 37: Foreign Government - Controlled Entity - 38: Publicly Traded Partnership - 39: Disclosing Qualified Intermediary | [optional] |
|
28
|
+
| **chap4_status_code** | **String** | Chapter 4 status code. Required if WithholdingIndicator is 4 (Chapter 4). Required if email is specified, must fill either this or RecipientForeignTin. Available values: - 01: U.S. Withholding Agent - FI - 02: U.S. Withholding Agent - Other - 03: Territory FI - not treated as U.S. Person - 04: Territory FI - treated as U.S. Person - 05: Participating FFI - Other - 06: Participating FFI - Reporting Model 2 FFI - 07: Registered Deemed - Compliant FFI-Reporting Model 1 FFI - 08: Registered Deemed - Compliant FFI-Sponsored Entity - 09: Registered Deemed - Compliant FFI-Other - 10: Certified Deemed - Compliant FFI-Other - 11: Certified Deemed - Compliant FFI-FFI with Low Value Accounts - 12: Certified Deemed - Compliant FFI-Non-Registering Local Bank - 13: Certified Deemed - Compliant FFI-Sponsored Entity - 14: Certified Deemed - Compliant FFI-Investment Advisor or Investment Manager - 15: Nonparticipating FFI - 16: Owner-Documented FFI - 17: U.S. Branch - treated as U.S. person - 18: U.S. Branch - not treated as U.S. person (reporting under section 1471) - 19: Passive NFFE identifying Substantial U.S. Owners - 20: Passive NFFE with no Substantial U.S. Owners - 21: Publicly Traded NFFE or Affiliate of Publicly Traded NFFE - 22: Active NFFE - 23: Individual - 24: Section 501(c) Entities - 25: Excepted Territory NFFE - 26: Excepted NFFE - Other - 27: Exempt Beneficial Owner - 28: Entity Wholly Owned by Exempt Beneficial Owners - 29: Unknown Recipient - 30: Recalcitrant Account Holder - 31: Nonreporting IGA FFI - 32: Direct reporting NFFE - 33: U.S. reportable account - 34: Non-consenting U.S. account - 35: Sponsored direct reporting NFFE - 36: Excepted Inter-affiliate FFI - 37: Undocumented Preexisting Obligation - 38: U.S. Branch - ECI presumption applied - 39: Account Holder of Excluded Financial Account - 40: Passive NFFE reported by FFI - 41: NFFE subject to 1472 withholding - 42: Recalcitrant Pool - No U.S. Indicia - 43: Recalcitrant Pool - U.S. Indicia - 44: Recalcitrant Pool - Dormant Account - 45: Recalcitrant Pool - U.S. Persons - 46: Recalcitrant Pool - Passive NFFEs - 47: Nonparticipating FFI Pool - 48: U.S. Payees Pool - 49: QI - Recalcitrant Pool-General - 50: U.S. Withholding Agent-Foreign branch of FI | [optional] |
|
29
|
+
| **primary_withholding_agent** | [**PrimaryWithholdingAgent**](PrimaryWithholdingAgent.md) | Primary withholding agent information | [optional] |
|
30
|
+
| **intermediary_or_flow_through** | [**IntermediaryOrFlowThrough**](IntermediaryOrFlowThrough.md) | Intermediary or flow-through entity information | [optional] |
|
31
|
+
| **type** | **String** | Form type | |
|
32
|
+
| **id** | **String** | Form ID. Unique identifier set when the record is created. | [optional][readonly] |
|
33
|
+
| **issuer_id** | **String** | Issuer ID - only required when creating forms | [optional] |
|
34
|
+
| **issuer_reference_id** | **String** | Issuer Reference ID - only required when creating forms | [optional] |
|
35
|
+
| **issuer_tin** | **String** | Issuer TIN - readonly | [optional] |
|
36
|
+
| **tax_year** | **Integer** | Tax Year - only required when creating forms | [optional] |
|
37
|
+
| **reference_id** | **String** | Internal reference ID. Never shown to any agency or recipient. | [optional] |
|
38
|
+
| **tin** | **String** | Recipient's Federal Tax Identification Number (TIN). | [optional] |
|
39
|
+
| **recipient_name** | **String** | Recipient name | |
|
40
|
+
| **recipient_second_name** | **String** | Recipient second name | [optional] |
|
41
|
+
| **address** | **String** | Address. | |
|
42
|
+
| **address2** | **String** | Address line 2. | [optional] |
|
43
|
+
| **city** | **String** | City. | |
|
44
|
+
| **state** | **String** | Two-letter US state or Canadian province code (required for US/CA addresses). | [optional] |
|
45
|
+
| **zip** | **String** | ZIP/postal code. | [optional] |
|
46
|
+
| **email** | **String** | Recipient's Contact email address. | [optional] |
|
47
|
+
| **account_number** | **String** | Account number | [optional] |
|
48
|
+
| **office_code** | **String** | Office code | [optional] |
|
49
|
+
| **non_us_province** | **String** | Province or region for non-US/CA addresses. | [optional] |
|
50
|
+
| **country_code** | **String** | Two-letter IRS country code (e.g., 'US', 'CA'), as defined at https://www.irs.gov/e-file-providers/country-codes. | |
|
51
|
+
| **federal_efile_date** | **Date** | Date when federal e-filing should be scheduled for this form | [optional] |
|
52
|
+
| **postal_mail** | **Boolean** | Boolean indicating that postal mailing to the recipient should be scheduled for this form | [optional] |
|
53
|
+
| **state_efile_date** | **Date** | Date when state e-filing should be scheduled for this form | [optional] |
|
54
|
+
| **recipient_edelivery_date** | **Date** | Date when recipient e-delivery should be scheduled for this form | [optional] |
|
55
|
+
| **tin_match** | **Boolean** | Boolean indicating that TIN Matching should be scheduled for this form | [optional] |
|
56
|
+
| **no_tin** | **Boolean** | No TIN indicator | [optional] |
|
57
|
+
| **address_verification** | **Boolean** | Boolean indicating that address verification should be scheduled for this form | [optional] |
|
58
|
+
| **state_and_local_withholding** | [**StateAndLocalWithholding**](StateAndLocalWithholding.md) | State and local withholding information | [optional] |
|
59
|
+
| **second_tin_notice** | **Boolean** | Second TIN notice | [optional] |
|
60
|
+
| **federal_efile_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Federal e-file status | [optional][readonly] |
|
61
|
+
| **state_efile_status** | [**Array<StateEfileStatusDetail>**](StateEfileStatusDetail.md) | State e-file status | [optional][readonly] |
|
62
|
+
| **postal_mail_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Postal mail to recipient status | [optional][readonly] |
|
63
|
+
| **tin_match_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | TIN Match status | [optional][readonly] |
|
64
|
+
| **address_verification_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Address verification status | [optional][readonly] |
|
65
|
+
| **e_delivery_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | EDelivery status | [optional][readonly] |
|
66
|
+
| **validation_errors** | [**Array<ValidationError>**](ValidationError.md) | Validation errors | [optional][readonly] |
|
67
|
+
| **created_at** | **Time** | Date time when the record was created. | [optional][readonly] |
|
68
|
+
| **updated_at** | **Time** | Date time when the record was last updated. | [optional][readonly] |
|
69
69
|
|
70
70
|
## Example
|
71
71
|
|
@@ -73,6 +73,7 @@
|
|
73
73
|
require 'avalara_sdk'
|
74
74
|
|
75
75
|
instance = AvalaraSdk::A1099::V2::Form1042S.new(
|
76
|
+
tin_type: null,
|
76
77
|
unique_form_id: null,
|
77
78
|
recipient_date_of_birth: null,
|
78
79
|
recipient_giin: null,
|
@@ -96,30 +97,14 @@ instance = AvalaraSdk::A1099::V2::Form1042S.new(
|
|
96
97
|
chap4_status_code: null,
|
97
98
|
primary_withholding_agent: null,
|
98
99
|
intermediary_or_flow_through: null,
|
100
|
+
type: 1099-NEC,
|
99
101
|
id: null,
|
100
|
-
type: null,
|
101
102
|
issuer_id: null,
|
102
103
|
issuer_reference_id: null,
|
103
104
|
issuer_tin: null,
|
104
105
|
tax_year: null,
|
105
|
-
federal_efile: null,
|
106
|
-
federal_efile_status: null,
|
107
|
-
state_efile: null,
|
108
|
-
state_efile_status: null,
|
109
|
-
postal_mail: null,
|
110
|
-
postal_mail_status: null,
|
111
|
-
tin_match: null,
|
112
|
-
tin_match_status: null,
|
113
|
-
address_verification: null,
|
114
|
-
address_verification_status: null,
|
115
|
-
e_delivery_status: null,
|
116
106
|
reference_id: null,
|
117
|
-
email: null,
|
118
|
-
tin_type: null,
|
119
|
-
fatca_filing_requirement: null,
|
120
107
|
tin: null,
|
121
|
-
no_tin: null,
|
122
|
-
second_tin_notice: null,
|
123
108
|
recipient_name: null,
|
124
109
|
recipient_second_name: null,
|
125
110
|
address: null,
|
@@ -127,14 +112,29 @@ instance = AvalaraSdk::A1099::V2::Form1042S.new(
|
|
127
112
|
city: null,
|
128
113
|
state: null,
|
129
114
|
zip: null,
|
130
|
-
|
131
|
-
country_code: null,
|
115
|
+
email: null,
|
132
116
|
account_number: null,
|
133
117
|
office_code: null,
|
118
|
+
non_us_province: null,
|
119
|
+
country_code: null,
|
120
|
+
federal_efile_date: null,
|
121
|
+
postal_mail: null,
|
122
|
+
state_efile_date: null,
|
123
|
+
recipient_edelivery_date: null,
|
124
|
+
tin_match: null,
|
125
|
+
no_tin: null,
|
126
|
+
address_verification: null,
|
127
|
+
state_and_local_withholding: null,
|
128
|
+
second_tin_notice: null,
|
129
|
+
federal_efile_status: null,
|
130
|
+
state_efile_status: null,
|
131
|
+
postal_mail_status: null,
|
132
|
+
tin_match_status: null,
|
133
|
+
address_verification_status: null,
|
134
|
+
e_delivery_status: null,
|
134
135
|
validation_errors: null,
|
135
136
|
created_at: null,
|
136
|
-
updated_at: null
|
137
|
-
state_and_local_withholding: null
|
137
|
+
updated_at: null
|
138
138
|
)
|
139
139
|
```
|
140
140
|
|
data/docs/A1099/V2/Form1095B.md
CHANGED
@@ -4,47 +4,52 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **
|
8
|
-
| **
|
9
|
-
| **
|
10
|
-
| **
|
11
|
-
| **
|
12
|
-
| **
|
13
|
-
| **
|
14
|
-
| **
|
15
|
-
| **
|
16
|
-
| **
|
17
|
-
| **
|
18
|
-
| **
|
19
|
-
| **
|
20
|
-
| **
|
21
|
-
| **
|
22
|
-
| **
|
23
|
-
| **
|
24
|
-
| **
|
25
|
-
| **
|
26
|
-
| **
|
27
|
-
| **
|
28
|
-
| **
|
29
|
-
| **
|
30
|
-
| **
|
31
|
-
| **
|
32
|
-
| **
|
33
|
-
| **
|
34
|
-
| **
|
35
|
-
| **
|
36
|
-
| **
|
37
|
-
| **
|
38
|
-
| **
|
39
|
-
| **
|
40
|
-
| **
|
41
|
-
| **
|
42
|
-
| **
|
43
|
-
| **
|
44
|
-
| **
|
45
|
-
| **
|
46
|
-
| **
|
47
|
-
| **
|
7
|
+
| **employee_first_name** | **String** | Employee's first name | |
|
8
|
+
| **employee_middle_name** | **String** | Employee's middle name | [optional] |
|
9
|
+
| **employee_last_name** | **String** | Employee's last name | |
|
10
|
+
| **employee_name_suffix** | **String** | Employee's name suffix | [optional] |
|
11
|
+
| **employee_date_of_birth** | **Date** | Employee's date of birth | [optional] |
|
12
|
+
| **origin_of_health_coverage_code** | **String** | Origin of health coverage code Available values: - A: Small Business Health Options Program (SHOP) - B: Employer-sponsored coverage - C: Government-sponsored program - D: Individual market insurance - E: Multiemployer plan - F: Other designated minimum essential coverage - G: Employer-sponsored coverage that is an individual coverage HRA (valid for tax years 2020 and later) | |
|
13
|
+
| **covered_individuals** | [**Array<CoveredIndividual>**](CoveredIndividual.md) | Covered individuals information - At least one month of coverage must be entered if it's not a correction. | [optional] |
|
14
|
+
| **type** | **String** | Form type | |
|
15
|
+
| **id** | **String** | Form ID. Unique identifier set when the record is created. | [optional][readonly] |
|
16
|
+
| **issuer_id** | **String** | Issuer ID - only required when creating forms | [optional] |
|
17
|
+
| **issuer_reference_id** | **String** | Issuer Reference ID - only required when creating forms | [optional] |
|
18
|
+
| **issuer_tin** | **String** | Issuer TIN - readonly | [optional] |
|
19
|
+
| **tax_year** | **Integer** | Tax Year - only required when creating forms | [optional] |
|
20
|
+
| **reference_id** | **String** | Internal reference ID. Never shown to any agency or recipient. | [optional] |
|
21
|
+
| **tin** | **String** | Recipient's Federal Tax Identification Number (TIN). | [optional] |
|
22
|
+
| **recipient_name** | **String** | Recipient name | |
|
23
|
+
| **tin_type** | **String** | Type of TIN (Tax ID Number) | [optional] |
|
24
|
+
| **recipient_second_name** | **String** | Recipient second name | [optional] |
|
25
|
+
| **address** | **String** | Address. | |
|
26
|
+
| **address2** | **String** | Address line 2. | [optional] |
|
27
|
+
| **city** | **String** | City. | |
|
28
|
+
| **state** | **String** | Two-letter US state or Canadian province code (required for US/CA addresses). | [optional] |
|
29
|
+
| **zip** | **String** | ZIP/postal code. | [optional] |
|
30
|
+
| **email** | **String** | Recipient's Contact email address. | [optional] |
|
31
|
+
| **account_number** | **String** | Account number | [optional] |
|
32
|
+
| **office_code** | **String** | Office code | [optional] |
|
33
|
+
| **non_us_province** | **String** | Province or region for non-US/CA addresses. | [optional] |
|
34
|
+
| **country_code** | **String** | Two-letter IRS country code (e.g., 'US', 'CA'), as defined at https://www.irs.gov/e-file-providers/country-codes. | |
|
35
|
+
| **federal_efile_date** | **Date** | Date when federal e-filing should be scheduled for this form | [optional] |
|
36
|
+
| **postal_mail** | **Boolean** | Boolean indicating that postal mailing to the recipient should be scheduled for this form | [optional] |
|
37
|
+
| **state_efile_date** | **Date** | Date when state e-filing should be scheduled for this form | [optional] |
|
38
|
+
| **recipient_edelivery_date** | **Date** | Date when recipient e-delivery should be scheduled for this form | [optional] |
|
39
|
+
| **tin_match** | **Boolean** | Boolean indicating that TIN Matching should be scheduled for this form | [optional] |
|
40
|
+
| **no_tin** | **Boolean** | No TIN indicator | [optional] |
|
41
|
+
| **address_verification** | **Boolean** | Boolean indicating that address verification should be scheduled for this form | [optional] |
|
42
|
+
| **state_and_local_withholding** | [**StateAndLocalWithholding**](StateAndLocalWithholding.md) | State and local withholding information | [optional] |
|
43
|
+
| **second_tin_notice** | **Boolean** | Second TIN notice | [optional] |
|
44
|
+
| **federal_efile_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Federal e-file status | [optional][readonly] |
|
45
|
+
| **state_efile_status** | [**Array<StateEfileStatusDetail>**](StateEfileStatusDetail.md) | State e-file status | [optional][readonly] |
|
46
|
+
| **postal_mail_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Postal mail to recipient status | [optional][readonly] |
|
47
|
+
| **tin_match_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | TIN Match status | [optional][readonly] |
|
48
|
+
| **address_verification_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Address verification status | [optional][readonly] |
|
49
|
+
| **e_delivery_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | EDelivery status | [optional][readonly] |
|
50
|
+
| **validation_errors** | [**Array<ValidationError>**](ValidationError.md) | Validation errors | [optional][readonly] |
|
51
|
+
| **created_at** | **Time** | Date time when the record was created. | [optional][readonly] |
|
52
|
+
| **updated_at** | **Time** | Date time when the record was last updated. | [optional][readonly] |
|
48
53
|
|
49
54
|
## Example
|
50
55
|
|
@@ -52,47 +57,52 @@
|
|
52
57
|
require 'avalara_sdk'
|
53
58
|
|
54
59
|
instance = AvalaraSdk::A1099::V2::Form1095B.new(
|
60
|
+
employee_first_name: null,
|
61
|
+
employee_middle_name: null,
|
62
|
+
employee_last_name: null,
|
63
|
+
employee_name_suffix: null,
|
64
|
+
employee_date_of_birth: null,
|
55
65
|
origin_of_health_coverage_code: null,
|
56
66
|
covered_individuals: null,
|
67
|
+
type: 1099-NEC,
|
57
68
|
id: null,
|
58
|
-
type: null,
|
59
69
|
issuer_id: null,
|
60
70
|
issuer_reference_id: null,
|
61
71
|
issuer_tin: null,
|
62
72
|
tax_year: null,
|
63
|
-
federal_efile: null,
|
64
|
-
federal_efile_status: null,
|
65
|
-
state_efile: null,
|
66
|
-
state_efile_status: null,
|
67
|
-
postal_mail: null,
|
68
|
-
postal_mail_status: null,
|
69
|
-
tin_match: null,
|
70
|
-
tin_match_status: null,
|
71
|
-
address_verification: null,
|
72
|
-
address_verification_status: null,
|
73
|
-
e_delivery_status: null,
|
74
73
|
reference_id: null,
|
75
|
-
email: null,
|
76
|
-
tin_type: null,
|
77
|
-
fatca_filing_requirement: null,
|
78
74
|
tin: null,
|
79
|
-
no_tin: null,
|
80
|
-
second_tin_notice: null,
|
81
75
|
recipient_name: null,
|
76
|
+
tin_type: null,
|
82
77
|
recipient_second_name: null,
|
83
78
|
address: null,
|
84
79
|
address2: null,
|
85
80
|
city: null,
|
86
81
|
state: null,
|
87
82
|
zip: null,
|
88
|
-
|
89
|
-
country_code: null,
|
83
|
+
email: null,
|
90
84
|
account_number: null,
|
91
85
|
office_code: null,
|
86
|
+
non_us_province: null,
|
87
|
+
country_code: null,
|
88
|
+
federal_efile_date: null,
|
89
|
+
postal_mail: null,
|
90
|
+
state_efile_date: null,
|
91
|
+
recipient_edelivery_date: null,
|
92
|
+
tin_match: null,
|
93
|
+
no_tin: null,
|
94
|
+
address_verification: null,
|
95
|
+
state_and_local_withholding: null,
|
96
|
+
second_tin_notice: null,
|
97
|
+
federal_efile_status: null,
|
98
|
+
state_efile_status: null,
|
99
|
+
postal_mail_status: null,
|
100
|
+
tin_match_status: null,
|
101
|
+
address_verification_status: null,
|
102
|
+
e_delivery_status: null,
|
92
103
|
validation_errors: null,
|
93
104
|
created_at: null,
|
94
|
-
updated_at: null
|
95
|
-
state_and_local_withholding: null
|
105
|
+
updated_at: null
|
96
106
|
)
|
97
107
|
```
|
98
108
|
|
@@ -0,0 +1,112 @@
|
|
1
|
+
# AvalaraSdk::A1099::V2::Form1095C
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **employee_first_name** | **String** | Employee's first name | |
|
8
|
+
| **employee_middle_name** | **String** | Employee's middle name | [optional] |
|
9
|
+
| **employee_last_name** | **String** | Employee's last name | |
|
10
|
+
| **employee_name_suffix** | **String** | Employee's name suffix | [optional] |
|
11
|
+
| **recipient_date_of_birth** | **Date** | Recipient's date of birth | [optional] |
|
12
|
+
| **plan_start_month** | **String** | Plan start month. The calendar month during which the plan year begins of the health plan in which the employee is offered coverage (or would be offered coverage if the employee were eligible to participate in the plan). Available values: - 00: None - 01: January - 02: February - 03: March - 04: April - 05: May - 06: June - 07: July - 08: August - 09: September - 10: October - 11: November - 12: December | |
|
13
|
+
| **employer_provided_si_coverage** | **Boolean** | Employer provided self-insured coverage | [optional] |
|
14
|
+
| **offer_and_coverages** | [**Array<OfferAndCoverage>**](OfferAndCoverage.md) | Offer and coverage information | |
|
15
|
+
| **covered_individuals** | [**Array<CoveredIndividual>**](CoveredIndividual.md) | Covered individuals information | [optional] |
|
16
|
+
| **type** | **String** | Form type | |
|
17
|
+
| **id** | **String** | Form ID. Unique identifier set when the record is created. | [optional][readonly] |
|
18
|
+
| **issuer_id** | **String** | Issuer ID - only required when creating forms | [optional] |
|
19
|
+
| **issuer_reference_id** | **String** | Issuer Reference ID - only required when creating forms | [optional] |
|
20
|
+
| **issuer_tin** | **String** | Issuer TIN - readonly | [optional] |
|
21
|
+
| **tax_year** | **Integer** | Tax Year - only required when creating forms | [optional] |
|
22
|
+
| **reference_id** | **String** | Internal reference ID. Never shown to any agency or recipient. | [optional] |
|
23
|
+
| **tin** | **String** | Recipient's Federal Tax Identification Number (TIN). | [optional] |
|
24
|
+
| **recipient_name** | **String** | Recipient name | |
|
25
|
+
| **tin_type** | **String** | Type of TIN (Tax ID Number) | [optional] |
|
26
|
+
| **recipient_second_name** | **String** | Recipient second name | [optional] |
|
27
|
+
| **address** | **String** | Address. | |
|
28
|
+
| **address2** | **String** | Address line 2. | [optional] |
|
29
|
+
| **city** | **String** | City. | |
|
30
|
+
| **state** | **String** | Two-letter US state or Canadian province code (required for US/CA addresses). | [optional] |
|
31
|
+
| **zip** | **String** | ZIP/postal code. | [optional] |
|
32
|
+
| **email** | **String** | Recipient's Contact email address. | [optional] |
|
33
|
+
| **account_number** | **String** | Account number | [optional] |
|
34
|
+
| **office_code** | **String** | Office code | [optional] |
|
35
|
+
| **non_us_province** | **String** | Province or region for non-US/CA addresses. | [optional] |
|
36
|
+
| **country_code** | **String** | Two-letter IRS country code (e.g., 'US', 'CA'), as defined at https://www.irs.gov/e-file-providers/country-codes. | |
|
37
|
+
| **federal_efile_date** | **Date** | Date when federal e-filing should be scheduled for this form | [optional] |
|
38
|
+
| **postal_mail** | **Boolean** | Boolean indicating that postal mailing to the recipient should be scheduled for this form | [optional] |
|
39
|
+
| **state_efile_date** | **Date** | Date when state e-filing should be scheduled for this form | [optional] |
|
40
|
+
| **recipient_edelivery_date** | **Date** | Date when recipient e-delivery should be scheduled for this form | [optional] |
|
41
|
+
| **tin_match** | **Boolean** | Boolean indicating that TIN Matching should be scheduled for this form | [optional] |
|
42
|
+
| **no_tin** | **Boolean** | No TIN indicator | [optional] |
|
43
|
+
| **address_verification** | **Boolean** | Boolean indicating that address verification should be scheduled for this form | [optional] |
|
44
|
+
| **state_and_local_withholding** | [**StateAndLocalWithholding**](StateAndLocalWithholding.md) | State and local withholding information | [optional] |
|
45
|
+
| **second_tin_notice** | **Boolean** | Second TIN notice | [optional] |
|
46
|
+
| **federal_efile_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Federal e-file status | [optional][readonly] |
|
47
|
+
| **state_efile_status** | [**Array<StateEfileStatusDetail>**](StateEfileStatusDetail.md) | State e-file status | [optional][readonly] |
|
48
|
+
| **postal_mail_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Postal mail to recipient status | [optional][readonly] |
|
49
|
+
| **tin_match_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | TIN Match status | [optional][readonly] |
|
50
|
+
| **address_verification_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | Address verification status | [optional][readonly] |
|
51
|
+
| **e_delivery_status** | [**Form1099StatusDetail**](Form1099StatusDetail.md) | EDelivery status | [optional][readonly] |
|
52
|
+
| **validation_errors** | [**Array<ValidationError>**](ValidationError.md) | Validation errors | [optional][readonly] |
|
53
|
+
| **created_at** | **Time** | Date time when the record was created. | [optional][readonly] |
|
54
|
+
| **updated_at** | **Time** | Date time when the record was last updated. | [optional][readonly] |
|
55
|
+
|
56
|
+
## Example
|
57
|
+
|
58
|
+
```ruby
|
59
|
+
require 'avalara_sdk'
|
60
|
+
|
61
|
+
instance = AvalaraSdk::A1099::V2::Form1095C.new(
|
62
|
+
employee_first_name: null,
|
63
|
+
employee_middle_name: null,
|
64
|
+
employee_last_name: null,
|
65
|
+
employee_name_suffix: null,
|
66
|
+
recipient_date_of_birth: null,
|
67
|
+
plan_start_month: null,
|
68
|
+
employer_provided_si_coverage: null,
|
69
|
+
offer_and_coverages: null,
|
70
|
+
covered_individuals: null,
|
71
|
+
type: 1099-NEC,
|
72
|
+
id: null,
|
73
|
+
issuer_id: null,
|
74
|
+
issuer_reference_id: null,
|
75
|
+
issuer_tin: null,
|
76
|
+
tax_year: null,
|
77
|
+
reference_id: null,
|
78
|
+
tin: null,
|
79
|
+
recipient_name: null,
|
80
|
+
tin_type: null,
|
81
|
+
recipient_second_name: null,
|
82
|
+
address: null,
|
83
|
+
address2: null,
|
84
|
+
city: null,
|
85
|
+
state: null,
|
86
|
+
zip: null,
|
87
|
+
email: null,
|
88
|
+
account_number: null,
|
89
|
+
office_code: null,
|
90
|
+
non_us_province: null,
|
91
|
+
country_code: null,
|
92
|
+
federal_efile_date: null,
|
93
|
+
postal_mail: null,
|
94
|
+
state_efile_date: null,
|
95
|
+
recipient_edelivery_date: null,
|
96
|
+
tin_match: null,
|
97
|
+
no_tin: null,
|
98
|
+
address_verification: null,
|
99
|
+
state_and_local_withholding: null,
|
100
|
+
second_tin_notice: null,
|
101
|
+
federal_efile_status: null,
|
102
|
+
state_efile_status: null,
|
103
|
+
postal_mail_status: null,
|
104
|
+
tin_match_status: null,
|
105
|
+
address_verification_status: null,
|
106
|
+
e_delivery_status: null,
|
107
|
+
validation_errors: null,
|
108
|
+
created_at: null,
|
109
|
+
updated_at: null
|
110
|
+
)
|
111
|
+
```
|
112
|
+
|