Skip to content

Commit bd2dbff

Browse files
author
Jonathan Wenger
committed
Updates to make strings nullable.
1 parent a3688c7 commit bd2dbff

File tree

214 files changed

+1128
-1128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+1128
-1128
lines changed

lib/AvaTaxClient.ts

Lines changed: 161 additions & 161 deletions
Large diffs are not rendered by default.

lib/models/ACHEntryDetailModel.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,27 +32,27 @@ import * as Models from './index';
3232
* @type {string}
3333
* @memberof ACHEntryDetailModel
3434
*/
35-
companyName: string;
35+
companyName?: string;
3636
/**
3737
* @type {string}
3838
* @memberof ACHEntryDetailModel
3939
*/
40-
state: string;
40+
state?: string;
4141
/**
4242
* @type {string}
4343
* @memberof ACHEntryDetailModel
4444
*/
45-
stateRegion: string;
45+
stateRegion?: string;
4646
/**
4747
* @type {string}
4848
* @memberof ACHEntryDetailModel
4949
*/
50-
individualId: string;
50+
individualId?: string;
5151
/**
5252
* @type {string}
5353
* @memberof ACHEntryDetailModel
5454
*/
55-
individualName: string;
55+
individualName?: string;
5656
/**
5757
* @type {number}
5858
* @memberof ACHEntryDetailModel
@@ -62,5 +62,5 @@ import * as Models from './index';
6262
* @type {string}
6363
* @memberof ACHEntryDetailModel
6464
*/
65-
traceNumber: string;
65+
traceNumber?: string;
6666
}

lib/models/AccountConfigurationModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import * as Models from './index';
4242
* @type {string}
4343
* @memberof AccountConfigurationModel
4444
*/
45-
value: string;
45+
value?: string;
4646
/**
4747
* @type {Date}
4848
* @memberof AccountConfigurationModel

lib/models/AccountMigrationStatusModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import * as Models from './index';
3232
* @type {string}
3333
* @memberof AccountMigrationStatusModel
3434
*/
35-
accountName: string;
35+
accountName?: string;
3636
/**
3737
* @type {Date}
3838
* @memberof AccountMigrationStatusModel

lib/models/AccountModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import * as Models from './index';
3232
* @type {string}
3333
* @memberof AccountModel
3434
*/
35-
crmid: string;
35+
crmid?: string;
3636
/**
3737
* @type {string}
3838
* @memberof AccountModel

lib/models/AddressInfo.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,37 +27,37 @@ import * as Models from './index';
2727
* @type {string}
2828
* @memberof AddressInfo
2929
*/
30-
line1: string;
30+
line1?: string;
3131
/**
3232
* @type {string}
3333
* @memberof AddressInfo
3434
*/
35-
line2: string;
35+
line2?: string;
3636
/**
3737
* @type {string}
3838
* @memberof AddressInfo
3939
*/
40-
line3: string;
40+
line3?: string;
4141
/**
4242
* @type {string}
4343
* @memberof AddressInfo
4444
*/
45-
city: string;
45+
city?: string;
4646
/**
4747
* @type {string}
4848
* @memberof AddressInfo
4949
*/
50-
region: string;
50+
region?: string;
5151
/**
5252
* @type {string}
5353
* @memberof AddressInfo
5454
*/
55-
country: string;
55+
country?: string;
5656
/**
5757
* @type {string}
5858
* @memberof AddressInfo
5959
*/
60-
postalCode: string;
60+
postalCode?: string;
6161
/**
6262
* @type {number}
6363
* @memberof AddressInfo

lib/models/AddressLocationInfo.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,42 +27,42 @@ import * as Models from './index';
2727
* @type {string}
2828
* @memberof AddressLocationInfo
2929
*/
30-
locationCode: string;
30+
locationCode?: string;
3131
/**
3232
* @type {string}
3333
* @memberof AddressLocationInfo
3434
*/
35-
line1: string;
35+
line1?: string;
3636
/**
3737
* @type {string}
3838
* @memberof AddressLocationInfo
3939
*/
40-
line2: string;
40+
line2?: string;
4141
/**
4242
* @type {string}
4343
* @memberof AddressLocationInfo
4444
*/
45-
line3: string;
45+
line3?: string;
4646
/**
4747
* @type {string}
4848
* @memberof AddressLocationInfo
4949
*/
50-
city: string;
50+
city?: string;
5151
/**
5252
* @type {string}
5353
* @memberof AddressLocationInfo
5454
*/
55-
region: string;
55+
region?: string;
5656
/**
5757
* @type {string}
5858
* @memberof AddressLocationInfo
5959
*/
60-
country: string;
60+
country?: string;
6161
/**
6262
* @type {string}
6363
* @memberof AddressLocationInfo
6464
*/
65-
postalCode: string;
65+
postalCode?: string;
6666
/**
6767
* @type {number}
6868
* @memberof AddressLocationInfo

lib/models/AddressValidationInfo.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import * as Models from './index';
2727
* @type {string}
2828
* @memberof AddressValidationInfo
2929
*/
30-
line1: string;
30+
line1?: string;
3131
/**
3232
* @type {Enums.TextCase}
3333
* @memberof AddressValidationInfo
@@ -37,32 +37,32 @@ import * as Models from './index';
3737
* @type {string}
3838
* @memberof AddressValidationInfo
3939
*/
40-
line2: string;
40+
line2?: string;
4141
/**
4242
* @type {string}
4343
* @memberof AddressValidationInfo
4444
*/
45-
line3: string;
45+
line3?: string;
4646
/**
4747
* @type {string}
4848
* @memberof AddressValidationInfo
4949
*/
50-
city: string;
50+
city?: string;
5151
/**
5252
* @type {string}
5353
* @memberof AddressValidationInfo
5454
*/
55-
region: string;
55+
region?: string;
5656
/**
5757
* @type {string}
5858
* @memberof AddressValidationInfo
5959
*/
60-
country: string;
60+
country?: string;
6161
/**
6262
* @type {string}
6363
* @memberof AddressValidationInfo
6464
*/
65-
postalCode: string;
65+
postalCode?: string;
6666
/**
6767
* @type {number}
6868
* @memberof AddressValidationInfo

lib/models/AdjustMultiDocumentModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import * as Models from './index';
3232
* @type {string}
3333
* @memberof AdjustMultiDocumentModel
3434
*/
35-
adjustDescription: string;
35+
adjustDescription?: string;
3636
/**
3737
* @type {Models.CreateMultiDocumentModel}
3838
* @memberof AdjustMultiDocumentModel

lib/models/AdjustTransactionModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import * as Models from './index';
3232
* @type {string}
3333
* @memberof AdjustTransactionModel
3434
*/
35-
adjustmentDescription: string;
35+
adjustmentDescription?: string;
3636
/**
3737
* @type {Models.CreateTransactionModel}
3838
* @memberof AdjustTransactionModel

0 commit comments

Comments
 (0)