Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bandwidth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,7 @@ components:
type: string
description: >-
The ID of the Application your from number or senderId is associated
with in the Bandwidth Phone Number Dashboard.
with in the Bandwidth App.
example: 93de2206-9669-4e07-948d-329f4b722ee2
priorityEnum:
type: string
Expand Down
2 changes: 1 addition & 1 deletion bandwidth/models/inbound_callback_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class InboundCallbackMessage(BaseModel):
""" # noqa: E501
id: StrictStr = Field(description="A unique identifier of the message.")
owner: StrictStr = Field(description="The Bandwidth phone number or alphanumeric identifier associated with the message.")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
time: datetime
segment_count: StrictInt = Field(description="The number of segments the user's message is broken into before sending over carrier networks.", alias="segmentCount")
direction: MessageDirectionEnum
Expand Down
2 changes: 1 addition & 1 deletion bandwidth/models/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Message(BaseModel):
""" # noqa: E501
id: Optional[StrictStr] = Field(default=None, description="The id of the message.")
owner: Optional[StrictStr] = Field(default=None, description="The Bandwidth phone number associated with the message.")
application_id: Optional[StrictStr] = Field(default=None, description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: Optional[StrictStr] = Field(default=None, description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
time: Optional[datetime] = Field(default=None, description="The datetime stamp of the message in ISO 8601")
segment_count: Optional[StrictInt] = Field(default=None, description="The number of segments the user's message is broken into before sending over carrier networks.", alias="segmentCount")
direction: Optional[MessageDirectionEnum] = None
Expand Down
2 changes: 1 addition & 1 deletion bandwidth/models/message_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MessageRequest(BaseModel):
"""
MessageRequest
""" # noqa: E501
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
to: List[StrictStr] = Field(description="The phone number(s) the message should be sent to in E164 format.")
var_from: StrictStr = Field(description="Either an alphanumeric sender ID or the sender's Bandwidth phone number in E.164 format, which must be hosted within Bandwidth and linked to the account that is generating the message. Alphanumeric Sender IDs can contain up to 11 characters, upper-case letters A-Z, lower-case letters a-z, numbers 0-9, space, hyphen -, plus +, underscore _ and ampersand &. Alphanumeric Sender IDs must contain at least one letter.", alias="from")
text: Optional[Annotated[str, Field(strict=True, max_length=2048)]] = Field(default=None, description="The contents of the text message. Must be 2048 characters or less.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MultiChannelChannelListMMSObject(BaseModel):
MultiChannelChannelListMMSObject
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
content: MmsMessageContent
additional_properties: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MultiChannelChannelListMMSResponseObject(BaseModel):
MultiChannelChannelListMMSResponseObject
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
content: MmsMessageContent
owner: StrictStr = Field(description="The Bandwidth senderId associated with the message. Identical to 'from'.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class MultiChannelChannelListObjectBase(BaseModel):
MultiChannelChannelListObjectBase
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
additional_properties: Dict[str, Any] = {}
__properties: ClassVar[List[str]] = ["from", "applicationId", "channel"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MultiChannelChannelListRBMObject(BaseModel):
MultiChannelChannelListRBMObject
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
content: MultiChannelChannelListRBMObjectAllOfContent
additional_properties: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MultiChannelChannelListRBMResponseObject(BaseModel):
MultiChannelChannelListRBMResponseObject
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
content: MultiChannelChannelListRBMObjectAllOfContent
owner: StrictStr = Field(description="The Bandwidth senderId associated with the message. Identical to 'from'.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MultiChannelChannelListSMSObject(BaseModel):
MultiChannelChannelListSMSObject
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
content: SmsMessageContent
additional_properties: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MultiChannelChannelListSMSResponseObject(BaseModel):
MultiChannelChannelListSMSResponseObject
""" # noqa: E501
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
channel: MultiChannelMessageChannelEnum
content: SmsMessageContent
owner: StrictStr = Field(description="The Bandwidth senderId associated with the message. Identical to 'from'.")
Expand Down
2 changes: 1 addition & 1 deletion bandwidth/models/status_callback_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class StatusCallbackMessage(BaseModel):
""" # noqa: E501
id: StrictStr = Field(description="A unique identifier of the message.")
owner: StrictStr = Field(description="The Bandwidth phone number or alphanumeric identifier associated with the message.")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard.", alias="applicationId")
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
time: datetime
segment_count: StrictInt = Field(description="The number of segments the user's message is broken into before sending over carrier networks.", alias="segmentCount")
direction: MessageDirectionEnum
Expand Down
2 changes: 1 addition & 1 deletion docs/InboundCallbackMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | A unique identifier of the message. |
**owner** | **str** | The Bandwidth phone number or alphanumeric identifier associated with the message. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**time** | **datetime** | |
**segment_count** | **int** | The number of segments the user's message is broken into before sending over carrier networks. |
**direction** | [**MessageDirectionEnum**](MessageDirectionEnum.md) | |
Expand Down
2 changes: 1 addition & 1 deletion docs/Message.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The id of the message. | [optional]
**owner** | **str** | The Bandwidth phone number associated with the message. | [optional]
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. | [optional]
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. | [optional]
**time** | **datetime** | The datetime stamp of the message in ISO 8601 | [optional]
**segment_count** | **int** | The number of segments the user's message is broken into before sending over carrier networks. | [optional]
**direction** | [**MessageDirectionEnum**](MessageDirectionEnum.md) | | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/MessageRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**to** | **List[str]** | The phone number(s) the message should be sent to in E164 format. |
**var_from** | **str** | Either an alphanumeric sender ID or the sender's Bandwidth phone number in E.164 format, which must be hosted within Bandwidth and linked to the account that is generating the message. Alphanumeric Sender IDs can contain up to 11 characters, upper-case letters A-Z, lower-case letters a-z, numbers 0-9, space, hyphen -, plus +, underscore _ and ampersand &. Alphanumeric Sender IDs must contain at least one letter. |
**text** | **str** | The contents of the text message. Must be 2048 characters or less. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListMMSObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**MmsMessageContent**](MmsMessageContent.md) | |

Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListMMSResponseObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**MmsMessageContent**](MmsMessageContent.md) | |
**owner** | **str** | The Bandwidth senderId associated with the message. Identical to 'from'. |
Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListObjectBase.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |

## Example
Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListRBMObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**MultiChannelChannelListRBMObjectAllOfContent**](MultiChannelChannelListRBMObjectAllOfContent.md) | |

Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListRBMResponseObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**MultiChannelChannelListRBMObjectAllOfContent**](MultiChannelChannelListRBMObjectAllOfContent.md) | |
**owner** | **str** | The Bandwidth senderId associated with the message. Identical to 'from'. |
Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListRequestObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**MmsMessageContent**](MmsMessageContent.md) | |

Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListResponseObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**MmsMessageContent**](MmsMessageContent.md) | |
**owner** | **str** | The Bandwidth senderId associated with the message. Identical to 'from'. |
Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListSMSObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**SmsMessageContent**](SmsMessageContent.md) | |

Expand Down
2 changes: 1 addition & 1 deletion docs/MultiChannelChannelListSMSResponseObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | **str** | The sender ID of the message. This could be an alphanumeric sender ID. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**channel** | [**MultiChannelMessageChannelEnum**](MultiChannelMessageChannelEnum.md) | |
**content** | [**SmsMessageContent**](SmsMessageContent.md) | |
**owner** | **str** | The Bandwidth senderId associated with the message. Identical to 'from'. |
Expand Down
2 changes: 1 addition & 1 deletion docs/StatusCallbackMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | A unique identifier of the message. |
**owner** | **str** | The Bandwidth phone number or alphanumeric identifier associated with the message. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. |
**application_id** | **str** | The ID of the Application your from number or senderId is associated with in the Bandwidth App. |
**time** | **datetime** | |
**segment_count** | **int** | The number of segments the user's message is broken into before sending over carrier networks. |
**direction** | [**MessageDirectionEnum**](MessageDirectionEnum.md) | |
Expand Down
Loading