Skip to content

Commit 77ec60d

Browse files
committed
fix spaces in docs
1 parent b078654 commit 77ec60d

File tree

11 files changed

+99
-99
lines changed

11 files changed

+99
-99
lines changed

bandwidth.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ components:
13571357
example: default
13581358
messageStatusEnum:
13591359
type: string
1360-
description: >
1360+
description: >-
13611361
The status of the message. One of RECEIVED QUEUED SENDING SENT FAILED
13621362
DELIVERED ACCEPTED UNDELIVERED.
13631363
enum:
@@ -1590,7 +1590,7 @@ components:
15901590
example: 2024-12-02T20:15:57.278Z
15911591
segmentCount:
15921592
type: integer
1593-
description: >
1593+
description: >-
15941594
The number of segments the original message from the user is broken
15951595
into before sending over to carrier networks.
15961596
example: 2
@@ -1613,7 +1613,7 @@ components:
16131613
type: array
16141614
items:
16151615
type: string
1616-
description: >
1616+
description: >-
16171617
The list of media URLs sent in the message. Including a `filename`
16181618
field in the `Content-Disposition` header of the media linked with a
16191619
URL will set the displayed file name. This is a best practice to
@@ -1660,7 +1660,7 @@ components:
16601660
type: string
16611661
from:
16621662
type: string
1663-
description: >
1663+
description: >-
16641664
Either an alphanumeric sender ID or the sender's Bandwidth phone
16651665
number in E.164 format, which must be hosted within Bandwidth and
16661666
linked to the account that is generating the message.
@@ -1681,7 +1681,7 @@ components:
16811681
type: string
16821682
format: uri
16831683
maxLength: 4096
1684-
description: >
1684+
description: >-
16851685
A list of URLs to include as media attachments as part of the
16861686
message.
16871687
@@ -1700,7 +1700,7 @@ components:
17001700
expiration:
17011701
type: string
17021702
format: date-time
1703-
description: >
1703+
description: >-
17041704
A string with the date/time value that the message will
17051705
automatically expire by. This must be a valid RFC-3339 value, e.g.,
17061706
2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00. Must be a
@@ -4891,7 +4891,7 @@ components:
48914891
name: Cache-Control
48924892
style: simple
48934893
explode: false
4894-
description: >
4894+
description: >-
48954895
General-header field is used to specify directives that MUST be obeyed
48964896
by all caching mechanisms along the request/response chain.
48974897
example: no-cache
@@ -4909,7 +4909,7 @@ components:
49094909
in: query
49104910
name: messageId
49114911
required: false
4912-
description: >
4912+
description: >-
49134913
The ID of the message to search for. Special characters need to be
49144914
encoded using URL encoding. Message IDs could come in different formats,
49154915
e.g., 9e0df4ca-b18d-40d7-a59f-82fcdf5ae8e6 and
@@ -4922,7 +4922,7 @@ components:
49224922
in: query
49234923
name: sourceTn
49244924
required: false
4925-
description: >
4925+
description: >-
49264926
The phone number that sent the message. Accepted values are: a single
49274927
full phone number a comma separated list of full phone numbers (maximum
49284928
of 10) or a single partial phone number (minimum of 5 characters e.g.
@@ -4934,7 +4934,7 @@ components:
49344934
in: query
49354935
name: destinationTn
49364936
required: false
4937-
description: >
4937+
description: >-
49384938
The phone number that received the message. Accepted values are: a
49394939
single full phone number a comma separated list of full phone numbers
49404940
(maximum of 10) or a single partial phone number (minimum of 5
@@ -4946,7 +4946,7 @@ components:
49464946
in: query
49474947
name: messageStatus
49484948
required: false
4949-
description: >
4949+
description: >-
49504950
The status of the message. One of RECEIVED QUEUED SENDING SENT FAILED
49514951
DELIVERED ACCEPTED UNDELIVERED.
49524952
schema:
@@ -4962,7 +4962,7 @@ components:
49624962
in: query
49634963
name: carrierName
49644964
required: false
4965-
description: >
4965+
description: >-
49664966
The name of the carrier used for this message. Possible values include
49674967
but are not limited to Verizon and TMobile. Special characters need to
49684968
be encoded using URL encoding (i.e. AT&T should be passed as AT%26T).
@@ -4988,7 +4988,7 @@ components:
49884988
in: query
49894989
name: fromDateTime
49904990
required: false
4991-
description: >
4991+
description: >-
49924992
The start of the date range to search in ISO 8601 format. Uses the
49934993
message receive time. The date range to search in is currently 14 days.
49944994
example: 2022-09-14T18:20:16.000Z
@@ -4998,7 +4998,7 @@ components:
49984998
in: query
49994999
name: toDateTime
50005000
required: false
5001-
description: >
5001+
description: >-
50025002
The end of the date range to search in ISO 8601 format. Uses the message
50035003
receive time. The date range to search in is currently 14 days.
50045004
example: 2022-09-14T18:20:16.000Z
@@ -5034,7 +5034,7 @@ components:
50345034
in: query
50355035
name: limit
50365036
required: false
5037-
description: >
5037+
description: >-
50385038
The maximum records requested in search result. Default 100. The sum of
50395039
limit and after cannot be more than 10000.
50405040
schema:

bandwidth/api/media_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ def upload_media(
951951
media_id: Annotated[StrictStr, Field(description="Media ID to retrieve.")],
952952
body: Union[StrictBytes, StrictStr],
953953
content_type: Annotated[Optional[StrictStr], Field(description="The media type of the entity-body.")] = None,
954-
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain. ")] = None,
954+
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] = None,
955955
_request_timeout: Union[
956956
None,
957957
Annotated[StrictFloat, Field(gt=0)],
@@ -977,7 +977,7 @@ def upload_media(
977977
:type body: bytearray
978978
:param content_type: The media type of the entity-body.
979979
:type content_type: str
980-
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
980+
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
981981
:type cache_control: str
982982
:param _request_timeout: timeout setting for this request. If one
983983
number provided, it will be total request
@@ -1042,7 +1042,7 @@ def upload_media_with_http_info(
10421042
media_id: Annotated[StrictStr, Field(description="Media ID to retrieve.")],
10431043
body: Union[StrictBytes, StrictStr],
10441044
content_type: Annotated[Optional[StrictStr], Field(description="The media type of the entity-body.")] = None,
1045-
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain. ")] = None,
1045+
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] = None,
10461046
_request_timeout: Union[
10471047
None,
10481048
Annotated[StrictFloat, Field(gt=0)],
@@ -1068,7 +1068,7 @@ def upload_media_with_http_info(
10681068
:type body: bytearray
10691069
:param content_type: The media type of the entity-body.
10701070
:type content_type: str
1071-
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
1071+
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
10721072
:type cache_control: str
10731073
:param _request_timeout: timeout setting for this request. If one
10741074
number provided, it will be total request
@@ -1133,7 +1133,7 @@ def upload_media_without_preload_content(
11331133
media_id: Annotated[StrictStr, Field(description="Media ID to retrieve.")],
11341134
body: Union[StrictBytes, StrictStr],
11351135
content_type: Annotated[Optional[StrictStr], Field(description="The media type of the entity-body.")] = None,
1136-
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain. ")] = None,
1136+
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] = None,
11371137
_request_timeout: Union[
11381138
None,
11391139
Annotated[StrictFloat, Field(gt=0)],
@@ -1159,7 +1159,7 @@ def upload_media_without_preload_content(
11591159
:type body: bytearray
11601160
:param content_type: The media type of the entity-body.
11611161
:type content_type: str
1162-
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
1162+
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
11631163
:type cache_control: str
11641164
:param _request_timeout: timeout setting for this request. If one
11651165
number provided, it will be total request

0 commit comments

Comments
 (0)