Skip to content

Commit 417aaf8

Browse files
band-swi-release-engineering[bot]DX-Bandwidthckoegel
authored
Generate SDK with OpenAPI Generator Version (#70)
Co-authored-by: DX-Bandwidth <[email protected]> Co-authored-by: ckoegel <[email protected]>
1 parent c797813 commit 417aaf8

File tree

6 files changed

+134
-0
lines changed

6 files changed

+134
-0
lines changed

bandwidth.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5228,6 +5228,35 @@ components:
52285228
PUT.
52295229
example: true
52305230
type: boolean
5231+
blocked:
5232+
description: >-
5233+
Whether a Toll-Free Verification is blocked. This attribute will only be
5234+
defined when the number is blocked. (Not Available Until 5/28/2025)
5235+
example: true
5236+
type: boolean
5237+
blockedReason:
5238+
description: >-
5239+
The reason why the Toll-Free Verification is blocked. This attribute
5240+
will only be defined when the number is blocked. (Not Available Until
5241+
5/28/2025)
5242+
example: Toll-free number was used to send spam messages
5243+
type: string
5244+
privacyPolicyUrl:
5245+
description: >-
5246+
The Toll-Free Verification request privacy policy URL. (Not Available
5247+
Until 5/28/2025)
5248+
example: http://your-company.com/privacyPolicyUrl.pdf
5249+
type: string
5250+
termsAndConditionsUrl:
5251+
description: >-
5252+
The Toll-Free Verification request terms and conditions policy URL. (Not
5253+
Available Until 5/28/2025)
5254+
example: http://your-company.com/termsAndConditionsUrl.pdf
5255+
type: string
5256+
businessDBA:
5257+
description: The company 'Doing Business As'. (Not Available Until 5/28/2025)
5258+
example: SecondCompany Name
5259+
type: string
52315260
additionalDenialReason:
52325261
properties:
52335262
statusCode:
@@ -5308,6 +5337,12 @@ components:
53085337
example: Any additional information
53095338
isvReseller:
53105339
$ref: '#/components/schemas/isvReseller'
5340+
privacyPolicyUrl:
5341+
$ref: '#/components/schemas/privacyPolicyUrl'
5342+
termsAndConditionsUrl:
5343+
$ref: '#/components/schemas/termsAndConditionsUrl'
5344+
businessDBA:
5345+
$ref: '#/components/schemas/businessDBA'
53115346
verificationUpdateRequest:
53125347
type: object
53135348
required:
@@ -5341,6 +5376,12 @@ components:
53415376
$ref: '#/components/schemas/additionalInformation'
53425377
isvReseller:
53435378
$ref: '#/components/schemas/isvReseller'
5379+
privacyPolicyUrl:
5380+
$ref: '#/components/schemas/privacyPolicyUrl'
5381+
termsAndConditionsUrl:
5382+
$ref: '#/components/schemas/termsAndConditionsUrl'
5383+
businessDBA:
5384+
$ref: '#/components/schemas/businessDBA'
53445385
tfvBasicAuthentication:
53455386
type: object
53465387
properties:
@@ -5419,6 +5460,10 @@ components:
54195460
$ref: '#/components/schemas/resubmitAllowed'
54205461
status:
54215462
$ref: '#/components/schemas/tfvUnverifiedStatus'
5463+
blocked:
5464+
$ref: '#/components/schemas/blocked'
5465+
blockedReason:
5466+
$ref: '#/components/schemas/blockedReason'
54225467
verificationWebhook:
54235468
type: object
54245469
properties:
@@ -5501,6 +5546,7 @@ components:
55015546
minLength: 0
55025547
maxLength: 500
55035548
nullable: true
5549+
example: Any additional information
55045550
optInWorkflow:
55055551
type: object
55065552
nullable: false
@@ -5762,6 +5808,10 @@ components:
57625808
example: '2021-06-08T06:45:13.0Z'
57635809
submission:
57645810
$ref: '#/components/schemas/tfvSubmissionInfo'
5811+
blocked:
5812+
$ref: '#/components/schemas/blocked'
5813+
blockedReason:
5814+
$ref: '#/components/schemas/blockedReason'
57655815
tfvSubmissionInfo:
57665816
type: object
57675817
properties:
@@ -5787,6 +5837,12 @@ components:
57875837
$ref: '#/components/schemas/additionalInformation'
57885838
isvReseller:
57895839
$ref: '#/components/schemas/isvReseller'
5840+
privacyPolicyUrl:
5841+
$ref: '#/components/schemas/privacyPolicyUrl'
5842+
termsAndConditionsUrl:
5843+
$ref: '#/components/schemas/termsAndConditionsUrl'
5844+
businessDBA:
5845+
$ref: '#/components/schemas/businessDBA'
57905846
tfvStatusEnum:
57915847
type: string
57925848
enum:

models/tfv-status.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,18 @@ export interface TfvStatus {
7474
* @memberof TfvStatus
7575
*/
7676
'submission'?: TfvSubmissionInfo;
77+
/**
78+
* Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025)
79+
* @type {boolean}
80+
* @memberof TfvStatus
81+
*/
82+
'blocked'?: boolean;
83+
/**
84+
* The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025)
85+
* @type {string}
86+
* @memberof TfvStatus
87+
*/
88+
'blockedReason'?: string;
7789
}
7890

7991

models/tfv-submission-info.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,23 @@ export interface TfvSubmissionInfo {
8383
* @memberof TfvSubmissionInfo
8484
*/
8585
'isvReseller'?: string | null;
86+
/**
87+
* The Toll-Free Verification request privacy policy URL. (Not Available Until 5/28/2025)
88+
* @type {string}
89+
* @memberof TfvSubmissionInfo
90+
*/
91+
'privacyPolicyUrl'?: string;
92+
/**
93+
* The Toll-Free Verification request terms and conditions policy URL. (Not Available Until 5/28/2025)
94+
* @type {string}
95+
* @memberof TfvSubmissionInfo
96+
*/
97+
'termsAndConditionsUrl'?: string;
98+
/**
99+
* The company \'Doing Business As\'. (Not Available Until 5/28/2025)
100+
* @type {string}
101+
* @memberof TfvSubmissionInfo
102+
*/
103+
'businessDBA'?: string;
86104
}
87105

models/verification-denial-webhook.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,17 @@ export interface VerificationDenialWebhook {
7171
* @memberof VerificationDenialWebhook
7272
*/
7373
'status'?: string;
74+
/**
75+
* Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025)
76+
* @type {boolean}
77+
* @memberof VerificationDenialWebhook
78+
*/
79+
'blocked'?: boolean;
80+
/**
81+
* The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025)
82+
* @type {string}
83+
* @memberof VerificationDenialWebhook
84+
*/
85+
'blockedReason'?: string;
7486
}
7587

models/verification-request.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,23 @@ export interface VerificationRequest {
8989
* @memberof VerificationRequest
9090
*/
9191
'isvReseller'?: string | null;
92+
/**
93+
* The Toll-Free Verification request privacy policy URL. (Not Available Until 5/28/2025)
94+
* @type {string}
95+
* @memberof VerificationRequest
96+
*/
97+
'privacyPolicyUrl'?: string;
98+
/**
99+
* The Toll-Free Verification request terms and conditions policy URL. (Not Available Until 5/28/2025)
100+
* @type {string}
101+
* @memberof VerificationRequest
102+
*/
103+
'termsAndConditionsUrl'?: string;
104+
/**
105+
* The company \'Doing Business As\'. (Not Available Until 5/28/2025)
106+
* @type {string}
107+
* @memberof VerificationRequest
108+
*/
109+
'businessDBA'?: string;
92110
}
93111

models/verification-update-request.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,23 @@ export interface VerificationUpdateRequest {
8383
* @memberof VerificationUpdateRequest
8484
*/
8585
'isvReseller'?: string | null;
86+
/**
87+
* The Toll-Free Verification request privacy policy URL. (Not Available Until 5/28/2025)
88+
* @type {string}
89+
* @memberof VerificationUpdateRequest
90+
*/
91+
'privacyPolicyUrl'?: string;
92+
/**
93+
* The Toll-Free Verification request terms and conditions policy URL. (Not Available Until 5/28/2025)
94+
* @type {string}
95+
* @memberof VerificationUpdateRequest
96+
*/
97+
'termsAndConditionsUrl'?: string;
98+
/**
99+
* The company \'Doing Business As\'. (Not Available Until 5/28/2025)
100+
* @type {string}
101+
* @memberof VerificationUpdateRequest
102+
*/
103+
'businessDBA'?: string;
86104
}
87105

0 commit comments

Comments
 (0)