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/verification_request.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,8 @@ class VerificationRequest(BaseModel):
36
36
message_volume: Annotated[int, Field(le=10000000, strict=True, ge=10)] =Field(description="Estimated monthly volume of messages from the toll-free number.", alias="messageVolume")
use_case: Annotated[str, Field(min_length=0, strict=True, max_length=500)] =Field(description="The category of the use case.", alias="useCase")
39
-
use_case_summary: Annotated[str, Field(min_length=1, strict=True, max_length=500)] =Field(description="A general idea of the use case and customer.", alias="useCaseSummary")
40
-
production_message_content: Annotated[str, Field(min_length=1, strict=True, max_length=500)] =Field(description="Example of message content.", alias="productionMessageContent")
39
+
use_case_summary: Annotated[str, Field(min_length=0, strict=True, max_length=500)] =Field(description="A general idea of the use case and customer.", alias="useCaseSummary")
40
+
production_message_content: Annotated[str, Field(min_length=0, strict=True, max_length=500)] =Field(description="Example of message content.", alias="productionMessageContent")
Copy file name to clipboardExpand all lines: docs/CallsApi.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -235,7 +235,7 @@ with bandwidth.ApiClient(configuration) as api_client:
235
235
max_start_time ='2022-06-21T19:13:21Z'# str | Filter results to calls which have a `startTime` before or including `maxStartTime` (in ISO8601 format). (optional)
236
236
disconnect_cause ='hangup'# str | Filter results to calls with specified call Disconnect Cause. (optional)
237
237
page_size =1000# int | Specifies the max number of calls that will be returned. (optional) (default to 1000)
238
-
page_token ='page_token_example'# str | Not intended for explicit use. To use pagination, follow the links in the `Link` header of the response, as indicated in the endpoint description. (optional)
238
+
page_token ='eyJwYWdlVG9rZW4iOiJ0b2tlbiJ9'# str | Not intended for explicit use. To use pagination, follow the links in the `Link` header of the response, as indicated in the endpoint description. (optional)
Copy file name to clipboardExpand all lines: docs/ConferencesApi.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -508,7 +508,7 @@ with bandwidth.ApiClient(configuration) as api_client:
508
508
min_created_time ='2022-06-21T19:13:21Z'# str | Filter results to conferences which have a `createdTime` after or at `minCreatedTime` (in ISO8601 format). (optional)
509
509
max_created_time ='2022-06-21T19:13:21Z'# str | Filter results to conferences which have a `createdTime` before or at `maxCreatedTime` (in ISO8601 format). (optional)
510
510
page_size =1000# int | Specifies the max number of conferences that will be returned. (optional) (default to 1000)
511
-
page_token ='page_token_example'# str | Not intended for explicit use. To use pagination, follow the links in the `Link` header of the response, as indicated in the endpoint description. (optional)
511
+
page_token ='eyJwYWdlVG9rZW4iOiJ0b2tlbiJ9'# str | Not intended for explicit use. To use pagination, follow the links in the `Link` header of the response, as indicated in the endpoint description. (optional)
0 commit comments