spartaxx.businessmodels 1.0.305 → 1.0.307
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/ClientInputForm.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
export interface ClientInputForm {
|
2
2
|
TaxpayerName?: string;
|
3
|
-
TelephoneNumber?:
|
3
|
+
TelephoneNumber?: string;
|
4
4
|
MaillingAddress?: string;
|
5
5
|
SpouseName?: string;
|
6
|
-
SpouseTelephoneNumber?:
|
6
|
+
SpouseTelephoneNumber?: string;
|
7
7
|
SpouseMaillingAddress?: string;
|
8
8
|
PropertyAddress?: string;
|
9
9
|
TaxType?: string;
|
10
|
-
TaxPeriod?:
|
10
|
+
TaxPeriod?: string;
|
11
11
|
MakePaymentsOnBehalfOfTaxYear?: boolean;
|
12
12
|
ReceiveChecksForRefunds?: boolean;
|
13
13
|
ExecuteWaiversForTaxDeficiencies?: boolean;
|