|
1 | | -import { BaseDocumentRequest, DocumentType } from "../Documents"; |
2 | | -import { StateTaxInfoWithIncome } from "./StateTaxInfo"; |
3 | | - |
4 | | -// request body |
5 | | -export interface Ten99MISCDocumentRequest extends BaseDocumentRequest { |
6 | | - type: DocumentType.TEN99MISC; |
7 | | - payerId: string; |
8 | | - year: number; |
9 | | - |
10 | | - /** |
11 | | - * Required if you have multiple accounts for a recipient for whom you are filing more than one Form |
12 | | - * 1099-MISC. Required if `hasFatcaFilingRequirement` is true. |
13 | | - */ |
14 | | - accountNumber?: string; |
15 | | - |
16 | | - /** |
17 | | - * Satisfying a requirement to report with respect to a U.S. account for chapter 4 purposes. |
18 | | - */ |
19 | | - hasFatcaFilingRequirement?: boolean; |
20 | | - |
21 | | - /** |
22 | | - * Report rents from real estate on Schedule E (Form 1040). However, report rents on Schedule C |
23 | | - * (Form 1040) if you provided significant services to the tenant, sold real estate as a business, |
24 | | - * or rented personal property as a business. |
25 | | - */ |
26 | | - rents?: number; // float |
27 | | - |
28 | | - /** |
29 | | - * Report royalties from oil, gas, or mineral properties; copyrights; and patents on Schedule E |
30 | | - * (Form 1040). |
31 | | - */ |
32 | | - royalties?: number; // float |
33 | | - |
34 | | - /** |
35 | | - * The amount shown may be payments received as the beneficiary of a deceased employee, prizes, |
36 | | - * awards, taxable damages, Indian gaming profits, or other taxable income. |
37 | | - */ |
38 | | - otherIncome?: number; // float |
39 | | - |
40 | | - /** |
41 | | - * The backup withholding or withholding on Indian gaming profits. Generally, a payer must backup |
42 | | - * withhold if recipient did not furnish a TIN. |
43 | | - */ |
44 | | - federalIncomeTaxWithheld?: number; // float |
45 | | - |
46 | | - /** |
47 | | - * The amount paid to a fishing boat crew member who is considered by the operator to be |
48 | | - * self-employed. |
49 | | - */ |
50 | | - fishingBoatProceeds?: number; // float |
51 | | - |
52 | | - /** |
53 | | - * The medical and health care payments for individuals. |
54 | | - */ |
55 | | - medicalPayments?: number; // float |
56 | | - |
57 | | - /** |
58 | | - * If true, consumer products totaling $5,000 or more were sold for resale, on a buy-sell, |
59 | | - * a deposit-commission, or other basis. |
60 | | - */ |
61 | | - hasDirectSalesOver5000?: boolean; |
62 | | - |
63 | | - /** |
64 | | - * The substitute payments in lieu of dividends or tax-exempt interest received by your broker |
65 | | - * on your behalf as a result of a loan of your securities. |
66 | | - */ |
67 | | - substitutePayments?: number; // float |
68 | | - |
69 | | - /** |
70 | | - * The crop insurance proceeds of $600 or more paid to farmers by insurance companies unless the |
71 | | - * farmer has informed the insurance company that expenses have been capitalized under section 278, 263A, or 447. |
72 | | - */ |
73 | | - cropInsuranceProceeds?: number; // float |
74 | | - |
75 | | - /** |
76 | | - * The gross proceeds paid to an attorney in connection with legal services. |
77 | | - */ |
78 | | - grossProceedsAttorney?: number; // float |
79 | | - |
80 | | - /** |
81 | | - * The amount paid for the purchase of fish for resale from any person engaged in the trade or business of |
82 | | - * catching fish. |
83 | | - */ |
84 | | - fishPurchasedForResale?: number; // float |
85 | | - |
86 | | - /** |
87 | | - * The current year deferrals as a nonemployee under a nonqualified deferred compensation (NQDC) plan that |
88 | | - * is subject to the requirements of section 409A plus any earnings on current and prior year deferrals. |
89 | | - */ |
90 | | - section409ADeferrals?: number; // float |
91 | | - |
92 | | - /** |
93 | | - * The total compensation of excess golden parachute payments subject to a 20% excise tax. |
94 | | - */ |
95 | | - excessGoldenParachutePayments?: number; // float |
96 | | - |
97 | | - /** |
98 | | - * The income as a nonemployee under an NQDC plan that does not meet the requirements of section 409A. Any |
99 | | - * amount included in `section409A` that is currently taxable should also be included. |
100 | | - */ |
101 | | - nqdc?: number; // float |
102 | | - |
103 | | - /** |
104 | | - * Up to two (2) state tax information objects. |
105 | | - */ |
106 | | - stateTaxInfo?: StateTaxInfoWithIncome[]; |
107 | | -} |
| 1 | +// import { BaseDocumentRequest, DocumentType } from "../Documents"; |
| 2 | +// import { StateTaxInfoWithIncome } from "./StateTaxInfo"; |
| 3 | + |
| 4 | +// // request body |
| 5 | +// export interface Ten99MISCDocumentRequest extends BaseDocumentRequest { |
| 6 | +// type: DocumentType.TEN99MISC; |
| 7 | +// payerId: string; |
| 8 | +// year: number; |
| 9 | + |
| 10 | +// /** |
| 11 | +// * Required if you have multiple accounts for a recipient for whom you are filing more than one Form |
| 12 | +// * 1099-MISC. Required if `hasFatcaFilingRequirement` is true. |
| 13 | +// */ |
| 14 | +// accountNumber?: string; |
| 15 | + |
| 16 | +// /** |
| 17 | +// * Satisfying a requirement to report with respect to a U.S. account for chapter 4 purposes. |
| 18 | +// */ |
| 19 | +// hasFatcaFilingRequirement?: boolean; |
| 20 | + |
| 21 | +// /** |
| 22 | +// * Report rents from real estate on Schedule E (Form 1040). However, report rents on Schedule C |
| 23 | +// * (Form 1040) if you provided significant services to the tenant, sold real estate as a business, |
| 24 | +// * or rented personal property as a business. |
| 25 | +// */ |
| 26 | +// rents?: number; // float |
| 27 | + |
| 28 | +// /** |
| 29 | +// * Report royalties from oil, gas, or mineral properties; copyrights; and patents on Schedule E |
| 30 | +// * (Form 1040). |
| 31 | +// */ |
| 32 | +// royalties?: number; // float |
| 33 | + |
| 34 | +// /** |
| 35 | +// * The amount shown may be payments received as the beneficiary of a deceased employee, prizes, |
| 36 | +// * awards, taxable damages, Indian gaming profits, or other taxable income. |
| 37 | +// */ |
| 38 | +// otherIncome?: number; // float |
| 39 | + |
| 40 | +// /** |
| 41 | +// * The backup withholding or withholding on Indian gaming profits. Generally, a payer must backup |
| 42 | +// * withhold if recipient did not furnish a TIN. |
| 43 | +// */ |
| 44 | +// federalIncomeTaxWithheld?: number; // float |
| 45 | + |
| 46 | +// /** |
| 47 | +// * The amount paid to a fishing boat crew member who is considered by the operator to be |
| 48 | +// * self-employed. |
| 49 | +// */ |
| 50 | +// fishingBoatProceeds?: number; // float |
| 51 | + |
| 52 | +// /** |
| 53 | +// * The medical and health care payments for individuals. |
| 54 | +// */ |
| 55 | +// medicalPayments?: number; // float |
| 56 | + |
| 57 | +// /** |
| 58 | +// * If true, consumer products totaling $5,000 or more were sold for resale, on a buy-sell, |
| 59 | +// * a deposit-commission, or other basis. |
| 60 | +// */ |
| 61 | +// hasDirectSalesOver5000?: boolean; |
| 62 | + |
| 63 | +// /** |
| 64 | +// * The substitute payments in lieu of dividends or tax-exempt interest received by your broker |
| 65 | +// * on your behalf as a result of a loan of your securities. |
| 66 | +// */ |
| 67 | +// substitutePayments?: number; // float |
| 68 | + |
| 69 | +// /** |
| 70 | +// * The crop insurance proceeds of $600 or more paid to farmers by insurance companies unless the |
| 71 | +// * farmer has informed the insurance company that expenses have been capitalized under section 278, 263A, or 447. |
| 72 | +// */ |
| 73 | +// cropInsuranceProceeds?: number; // float |
| 74 | + |
| 75 | +// /** |
| 76 | +// * The gross proceeds paid to an attorney in connection with legal services. |
| 77 | +// */ |
| 78 | +// grossProceedsAttorney?: number; // float |
| 79 | + |
| 80 | +// /** |
| 81 | +// * The amount paid for the purchase of fish for resale from any person engaged in the trade or business of |
| 82 | +// * catching fish. |
| 83 | +// */ |
| 84 | +// fishPurchasedForResale?: number; // float |
| 85 | + |
| 86 | +// /** |
| 87 | +// * The current year deferrals as a nonemployee under a nonqualified deferred compensation (NQDC) plan that |
| 88 | +// * is subject to the requirements of section 409A plus any earnings on current and prior year deferrals. |
| 89 | +// */ |
| 90 | +// section409ADeferrals?: number; // float |
| 91 | + |
| 92 | +// /** |
| 93 | +// * The total compensation of excess golden parachute payments subject to a 20% excise tax. |
| 94 | +// */ |
| 95 | +// excessGoldenParachutePayments?: number; // float |
| 96 | + |
| 97 | +// /** |
| 98 | +// * The income as a nonemployee under an NQDC plan that does not meet the requirements of section 409A. Any |
| 99 | +// * amount included in `section409A` that is currently taxable should also be included. |
| 100 | +// */ |
| 101 | +// nqdc?: number; // float |
| 102 | + |
| 103 | +// /** |
| 104 | +// * Up to two (2) state tax information objects. |
| 105 | +// */ |
| 106 | +// stateTaxInfo: StateTaxInfoWithIncome[]; |
| 107 | +// } |
0 commit comments