Skip to content

Commit 82f35c1

Browse files
committed
Generate SDK with OpenAPI Generator Version
1 parent 17ae817 commit 82f35c1

File tree

7 files changed

+36
-0
lines changed

7 files changed

+36
-0
lines changed

bandwidth.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5956,6 +5956,8 @@ components:
59565956
$ref: '#/components/schemas/helpMessageResponse'
59575957
ageGatedContent:
59585958
$ref: '#/components/schemas/ageGatedContent'
5959+
cvToken:
5960+
$ref: '#/components/schemas/cvToken'
59595961
verificationUpdateRequest:
59605962
type: object
59615963
required:
@@ -6005,6 +6007,8 @@ components:
60056007
$ref: '#/components/schemas/helpMessageResponse'
60066008
ageGatedContent:
60076009
$ref: '#/components/schemas/ageGatedContent'
6010+
cvToken:
6011+
$ref: '#/components/schemas/cvToken'
60086012
tfvBasicAuthentication:
60096013
type: object
60106014
properties:
@@ -6456,6 +6460,8 @@ components:
64566460
$ref: '#/components/schemas/blocked'
64576461
blockedReason:
64586462
$ref: '#/components/schemas/blockedReason'
6463+
cvToken:
6464+
$ref: '#/components/schemas/cvToken'
64596465
tfvSubmissionInfo:
64606466
type: object
64616467
properties:
@@ -6520,6 +6526,18 @@ components:
65206526
nullable: true
65216527
pattern: ^[ -~]{16,64}$
65226528
type: string
6529+
cvToken:
6530+
type: string
6531+
description: >-
6532+
The token provided by Campaign Verify to validate your political use
6533+
case. Only required for 527 political organizations. If you are not a
6534+
527 political organization, this field should be omitted. If you pass an
6535+
empty string, it will be passed along and potentially rejected.
6536+
minLength: 0
6537+
maxLength: 500
6538+
nullable: true
6539+
example: >-
6540+
cv.user123|sess456|mno|tfree|read_write|X7yZ9aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVw
65236541
responses:
65246542
createMessageResponse:
65256543
description: Accepted

docs/TfvStatus.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
1515
**submission** | [**TfvSubmissionInfo**](TfvSubmissionInfo.md) | | [optional] [default to undefined]
1616
**blocked** | **boolean** | Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional] [default to undefined]
1717
**blockedReason** | **string** | The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional] [default to undefined]
18+
**cvToken** | **string** | The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. | [optional] [default to undefined]
1819

1920
## Example
2021

@@ -32,6 +33,7 @@ const instance: TfvStatus = {
3233
submission,
3334
blocked,
3435
blockedReason,
36+
cvToken,
3537
};
3638
```
3739

docs/VerificationRequest.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
2323
**businessEntityType** | [**BusinessEntityTypeEnum**](BusinessEntityTypeEnum.md) | | [optional] [default to undefined]
2424
**helpMessageResponse** | **string** | A message that gets sent to users requesting help. | [optional] [default to undefined]
2525
**ageGatedContent** | **boolean** | Indicates whether the content is age-gated. | [optional] [default to undefined]
26+
**cvToken** | **string** | The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. | [optional] [default to undefined]
2627

2728
## Example
2829

@@ -48,6 +49,7 @@ const instance: VerificationRequest = {
4849
businessEntityType,
4950
helpMessageResponse,
5051
ageGatedContent,
52+
cvToken,
5153
};
5254
```
5355

docs/VerificationUpdateRequest.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
2222
**businessEntityType** | [**BusinessEntityTypeEnum**](BusinessEntityTypeEnum.md) | | [optional] [default to undefined]
2323
**helpMessageResponse** | **string** | A message that gets sent to users requesting help. | [optional] [default to undefined]
2424
**ageGatedContent** | **boolean** | Indicates whether the content is age-gated. | [optional] [default to undefined]
25+
**cvToken** | **string** | The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. | [optional] [default to undefined]
2526

2627
## Example
2728

@@ -46,6 +47,7 @@ const instance: VerificationUpdateRequest = {
4647
businessEntityType,
4748
helpMessageResponse,
4849
ageGatedContent,
50+
cvToken,
4951
};
5052
```
5153

models/tfv-status.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ export interface TfvStatus {
5555
* The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked.
5656
*/
5757
'blockedReason'?: string;
58+
/**
59+
* The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected.
60+
*/
61+
'cvToken'?: string | null;
5862
}
5963

6064

models/verification-request.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ export interface VerificationRequest {
8484
* Indicates whether the content is age-gated.
8585
*/
8686
'ageGatedContent'?: boolean;
87+
/**
88+
* The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected.
89+
*/
90+
'cvToken'?: string | null;
8791
}
8892

8993

models/verification-update-request.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ export interface VerificationUpdateRequest {
8383
* Indicates whether the content is age-gated.
8484
*/
8585
'ageGatedContent'?: boolean;
86+
/**
87+
* The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected.
88+
*/
89+
'cvToken'?: string | null;
8690
}
8791

8892

0 commit comments

Comments
 (0)