You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bandwidth/models/tfv_status.py
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -42,8 +42,9 @@ class TfvStatus(BaseModel):
42
42
submission: Optional[TfvSubmissionInfo] =None
43
43
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.")
44
44
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")
45
+
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")
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")
53
53
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")
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")
52
52
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")
**blocked** | **bool** | Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional]
17
17
**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]
**help_message_response** | **str** | A message that gets sent to users requesting help. | [optional]
25
25
**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]
**help_message_response** | **str** | A message that gets sent to users requesting help. | [optional]
24
24
**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]
0 commit comments