Skip to content

Commit 5348a83

Browse files
committed
Merge remote-tracking branch 'origin/main' into brtc-python-sdk
2 parents bd594d2 + 7fec25f commit 5348a83

7 files changed

Lines changed: 14 additions & 12 deletions

File tree

bandwidth.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ paths:
14851485
$ref: '#/components/requestBodies/updateTollFreeVerificationRequestRequest'
14861486
responses:
14871487
'202':
1488-
description: Accepted
1488+
$ref: '#/components/responses/verifyPutResponse'
14891489
'400':
14901490
$ref: '#/components/responses/tfvPostBadRequestResponse'
14911491
'401':
@@ -6125,7 +6125,7 @@ components:
61256125
ageGatedContent:
61266126
$ref: '#/components/schemas/ageGatedContent'
61276127
cvToken:
6128-
$ref: '#/components/schemas/cvToken'
6128+
$ref: '#/components/schemas/cvTokenNullable'
61296129
verificationUpdateRequest:
61306130
type: object
61316131
required:
@@ -6176,7 +6176,7 @@ components:
61766176
ageGatedContent:
61776177
$ref: '#/components/schemas/ageGatedContent'
61786178
cvToken:
6179-
$ref: '#/components/schemas/cvToken'
6179+
$ref: '#/components/schemas/cvTokenNullable'
61806180
tfvBasicAuthentication:
61816181
type: object
61826182
properties:
@@ -6629,7 +6629,7 @@ components:
66296629
blockedReason:
66306630
$ref: '#/components/schemas/blockedReason'
66316631
cvToken:
6632-
$ref: '#/components/schemas/cvToken'
6632+
$ref: '#/components/schemas/cvTokenNullable'
66336633
tfvSubmissionInfo:
66346634
type: object
66356635
properties:
@@ -6996,8 +6996,8 @@ components:
69966996
description: >-
69976997
The token provided by Campaign Verify to validate your political use
69986998
case. Only required for 527 political organizations. If you are not a
6999-
527 political organization, this field should be omitted. If you pass an
7000-
empty string, it will be passed along and potentially rejected.
6999+
527 political organization, this field should be omitted. Supplying an
7000+
empty string will likely result in rejection.
70017001
minLength: 0
70027002
maxLength: 500
70037003
nullable: true
@@ -7671,6 +7671,8 @@ components:
76717671
example:
76727672
description: Service Unavailable Error.
76737673
type: Service Unavailable
7674+
verifyPutResponse:
7675+
description: Accepted
76747676
listEndpointsResponse:
76757677
description: OK
76767678
content:

bandwidth/models/tfv_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TfvStatus(BaseModel):
4141
submission: Optional[TfvSubmissionInfo] = None
4242
blocked: Optional[StrictBool] = Field(default=None, description="Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked.")
4343
blocked_reason: Optional[StrictStr] = Field(default=None, description="The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked.", alias="blockedReason")
44-
cv_token: Optional[Annotated[str, Field(min_length=0, strict=True, max_length=500)]] = Field(default=None, description="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.", alias="cvToken")
44+
cv_token: Optional[Annotated[str, Field(min_length=0, strict=True, max_length=500)]] = Field(default=None, description="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. Supplying an empty string will likely result in rejection.", alias="cvToken")
4545
additional_properties: Dict[str, Any] = {}
4646
__properties: ClassVar[List[str]] = ["phoneNumber", "status", "internalTicketNumber", "declineReasonDescription", "resubmitAllowed", "createdDateTime", "modifiedDateTime", "submission", "blocked", "blockedReason", "cvToken"]
4747

bandwidth/models/verification_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class VerificationRequest(BaseModel):
5151
business_entity_type: Optional[BusinessEntityTypeEnum] = Field(default=None, alias="businessEntityType")
5252
help_message_response: Optional[Annotated[str, Field(strict=True, max_length=500)]] = Field(default=None, description="A message that gets sent to users requesting help.", alias="helpMessageResponse")
5353
age_gated_content: Optional[StrictBool] = Field(default=None, description="Indicates whether the content is age-gated.", alias="ageGatedContent")
54-
cv_token: Optional[Annotated[str, Field(min_length=0, strict=True, max_length=500)]] = Field(default=None, description="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.", alias="cvToken")
54+
cv_token: Optional[Annotated[str, Field(min_length=0, strict=True, max_length=500)]] = Field(default=None, description="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. Supplying an empty string will likely result in rejection.", alias="cvToken")
5555
additional_properties: Dict[str, Any] = {}
5656
__properties: ClassVar[List[str]] = ["businessAddress", "businessContact", "messageVolume", "phoneNumbers", "useCase", "useCaseSummary", "productionMessageContent", "optInWorkflow", "additionalInformation", "isvReseller", "privacyPolicyUrl", "termsAndConditionsUrl", "businessDba", "businessRegistrationNumber", "businessRegistrationType", "businessEntityType", "helpMessageResponse", "ageGatedContent", "cvToken"]
5757

bandwidth/models/verification_update_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class VerificationUpdateRequest(BaseModel):
5050
business_entity_type: Optional[BusinessEntityTypeEnum] = Field(default=None, alias="businessEntityType")
5151
help_message_response: Optional[Annotated[str, Field(strict=True, max_length=500)]] = Field(default=None, description="A message that gets sent to users requesting help.", alias="helpMessageResponse")
5252
age_gated_content: Optional[StrictBool] = Field(default=None, description="Indicates whether the content is age-gated.", alias="ageGatedContent")
53-
cv_token: Optional[Annotated[str, Field(min_length=0, strict=True, max_length=500)]] = Field(default=None, description="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.", alias="cvToken")
53+
cv_token: Optional[Annotated[str, Field(min_length=0, strict=True, max_length=500)]] = Field(default=None, description="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. Supplying an empty string will likely result in rejection.", alias="cvToken")
5454
additional_properties: Dict[str, Any] = {}
5555
__properties: ClassVar[List[str]] = ["businessAddress", "businessContact", "messageVolume", "useCase", "useCaseSummary", "productionMessageContent", "optInWorkflow", "additionalInformation", "isvReseller", "privacyPolicyUrl", "termsAndConditionsUrl", "businessDba", "businessRegistrationNumber", "businessRegistrationType", "businessEntityType", "helpMessageResponse", "ageGatedContent", "cvToken"]
5656

docs/TfvStatus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
1515
**submission** | [**TfvSubmissionInfo**](TfvSubmissionInfo.md) | | [optional]
1616
**blocked** | **bool** | Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional]
1717
**blocked_reason** | **str** | The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional]
18-
**cv_token** | **str** | 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]
18+
**cv_token** | **str** | 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. Supplying an empty string will likely result in rejection. | [optional]
1919

2020
## Example
2121

docs/VerificationRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Name | Type | Description | Notes
2323
**business_entity_type** | [**BusinessEntityTypeEnum**](BusinessEntityTypeEnum.md) | | [optional]
2424
**help_message_response** | **str** | A message that gets sent to users requesting help. | [optional]
2525
**age_gated_content** | **bool** | Indicates whether the content is age-gated. | [optional]
26-
**cv_token** | **str** | 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]
26+
**cv_token** | **str** | 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. Supplying an empty string will likely result in rejection. | [optional]
2727

2828
## Example
2929

docs/VerificationUpdateRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Name | Type | Description | Notes
2222
**business_entity_type** | [**BusinessEntityTypeEnum**](BusinessEntityTypeEnum.md) | | [optional]
2323
**help_message_response** | **str** | A message that gets sent to users requesting help. | [optional]
2424
**age_gated_content** | **bool** | Indicates whether the content is age-gated. | [optional]
25-
**cv_token** | **str** | 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]
25+
**cv_token** | **str** | 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. Supplying an empty string will likely result in rejection. | [optional]
2626

2727
## Example
2828

0 commit comments

Comments
 (0)