From 285a64092855da5e09b5b0422a91bbbb74dc807a Mon Sep 17 00:00:00 2001 From: DX-Bandwidth Date: Fri, 13 Mar 2026 17:36:31 +0000 Subject: [PATCH] Generate SDK with OpenAPI Generator Version --- bandwidth.yml | 2 +- bandwidth/models/inbound_callback_message.py | 2 +- bandwidth/models/message.py | 2 +- bandwidth/models/message_request.py | 2 +- bandwidth/models/multi_channel_channel_list_mms_object.py | 2 +- .../models/multi_channel_channel_list_mms_response_object.py | 2 +- bandwidth/models/multi_channel_channel_list_object_base.py | 2 +- bandwidth/models/multi_channel_channel_list_rbm_object.py | 2 +- .../models/multi_channel_channel_list_rbm_response_object.py | 2 +- bandwidth/models/multi_channel_channel_list_sms_object.py | 2 +- .../models/multi_channel_channel_list_sms_response_object.py | 2 +- bandwidth/models/status_callback_message.py | 2 +- docs/InboundCallbackMessage.md | 2 +- docs/Message.md | 2 +- docs/MessageRequest.md | 2 +- docs/MultiChannelChannelListMMSObject.md | 2 +- docs/MultiChannelChannelListMMSResponseObject.md | 2 +- docs/MultiChannelChannelListObjectBase.md | 2 +- docs/MultiChannelChannelListRBMObject.md | 2 +- docs/MultiChannelChannelListRBMResponseObject.md | 2 +- docs/MultiChannelChannelListRequestObject.md | 2 +- docs/MultiChannelChannelListResponseObject.md | 2 +- docs/MultiChannelChannelListSMSObject.md | 2 +- docs/MultiChannelChannelListSMSResponseObject.md | 2 +- docs/StatusCallbackMessage.md | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/bandwidth.yml b/bandwidth.yml index 2b6bdb17..4948dd1d 100644 --- a/bandwidth.yml +++ b/bandwidth.yml @@ -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 diff --git a/bandwidth/models/inbound_callback_message.py b/bandwidth/models/inbound_callback_message.py index 8cd209ed..b42bcbc9 100644 --- a/bandwidth/models/inbound_callback_message.py +++ b/bandwidth/models/inbound_callback_message.py @@ -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 diff --git a/bandwidth/models/message.py b/bandwidth/models/message.py index b42cae7a..d5a0b52c 100644 --- a/bandwidth/models/message.py +++ b/bandwidth/models/message.py @@ -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 diff --git a/bandwidth/models/message_request.py b/bandwidth/models/message_request.py index acfd9400..416b6b74 100644 --- a/bandwidth/models/message_request.py +++ b/bandwidth/models/message_request.py @@ -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.") diff --git a/bandwidth/models/multi_channel_channel_list_mms_object.py b/bandwidth/models/multi_channel_channel_list_mms_object.py index d9978d93..4acc1f95 100644 --- a/bandwidth/models/multi_channel_channel_list_mms_object.py +++ b/bandwidth/models/multi_channel_channel_list_mms_object.py @@ -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] = {} diff --git a/bandwidth/models/multi_channel_channel_list_mms_response_object.py b/bandwidth/models/multi_channel_channel_list_mms_response_object.py index 6344b8c2..c5e9ce02 100644 --- a/bandwidth/models/multi_channel_channel_list_mms_response_object.py +++ b/bandwidth/models/multi_channel_channel_list_mms_response_object.py @@ -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'.") diff --git a/bandwidth/models/multi_channel_channel_list_object_base.py b/bandwidth/models/multi_channel_channel_list_object_base.py index e04dd9ad..592a9071 100644 --- a/bandwidth/models/multi_channel_channel_list_object_base.py +++ b/bandwidth/models/multi_channel_channel_list_object_base.py @@ -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"] diff --git a/bandwidth/models/multi_channel_channel_list_rbm_object.py b/bandwidth/models/multi_channel_channel_list_rbm_object.py index ae41619b..2b66d11e 100644 --- a/bandwidth/models/multi_channel_channel_list_rbm_object.py +++ b/bandwidth/models/multi_channel_channel_list_rbm_object.py @@ -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] = {} diff --git a/bandwidth/models/multi_channel_channel_list_rbm_response_object.py b/bandwidth/models/multi_channel_channel_list_rbm_response_object.py index 4a89988a..ea2ad427 100644 --- a/bandwidth/models/multi_channel_channel_list_rbm_response_object.py +++ b/bandwidth/models/multi_channel_channel_list_rbm_response_object.py @@ -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'.") diff --git a/bandwidth/models/multi_channel_channel_list_sms_object.py b/bandwidth/models/multi_channel_channel_list_sms_object.py index 757e2b72..922ccea7 100644 --- a/bandwidth/models/multi_channel_channel_list_sms_object.py +++ b/bandwidth/models/multi_channel_channel_list_sms_object.py @@ -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] = {} diff --git a/bandwidth/models/multi_channel_channel_list_sms_response_object.py b/bandwidth/models/multi_channel_channel_list_sms_response_object.py index 0d7287be..ff830ee8 100644 --- a/bandwidth/models/multi_channel_channel_list_sms_response_object.py +++ b/bandwidth/models/multi_channel_channel_list_sms_response_object.py @@ -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'.") diff --git a/bandwidth/models/status_callback_message.py b/bandwidth/models/status_callback_message.py index b37f537d..ba3acaea 100644 --- a/bandwidth/models/status_callback_message.py +++ b/bandwidth/models/status_callback_message.py @@ -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 diff --git a/docs/InboundCallbackMessage.md b/docs/InboundCallbackMessage.md index bd2cc324..5a46c208 100644 --- a/docs/InboundCallbackMessage.md +++ b/docs/InboundCallbackMessage.md @@ -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) | | diff --git a/docs/Message.md b/docs/Message.md index cf83eb00..080efab4 100644 --- a/docs/Message.md +++ b/docs/Message.md @@ -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] diff --git a/docs/MessageRequest.md b/docs/MessageRequest.md index fae515d8..093335e6 100644 --- a/docs/MessageRequest.md +++ b/docs/MessageRequest.md @@ -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] diff --git a/docs/MultiChannelChannelListMMSObject.md b/docs/MultiChannelChannelListMMSObject.md index c1b269c6..9c5f954b 100644 --- a/docs/MultiChannelChannelListMMSObject.md +++ b/docs/MultiChannelChannelListMMSObject.md @@ -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) | | diff --git a/docs/MultiChannelChannelListMMSResponseObject.md b/docs/MultiChannelChannelListMMSResponseObject.md index a14b903a..1b26e37b 100644 --- a/docs/MultiChannelChannelListMMSResponseObject.md +++ b/docs/MultiChannelChannelListMMSResponseObject.md @@ -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'. | diff --git a/docs/MultiChannelChannelListObjectBase.md b/docs/MultiChannelChannelListObjectBase.md index 7dab9940..0ba47346 100644 --- a/docs/MultiChannelChannelListObjectBase.md +++ b/docs/MultiChannelChannelListObjectBase.md @@ -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 diff --git a/docs/MultiChannelChannelListRBMObject.md b/docs/MultiChannelChannelListRBMObject.md index 55cb9dfb..5962585b 100644 --- a/docs/MultiChannelChannelListRBMObject.md +++ b/docs/MultiChannelChannelListRBMObject.md @@ -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) | | diff --git a/docs/MultiChannelChannelListRBMResponseObject.md b/docs/MultiChannelChannelListRBMResponseObject.md index ee60fa63..3042ee79 100644 --- a/docs/MultiChannelChannelListRBMResponseObject.md +++ b/docs/MultiChannelChannelListRBMResponseObject.md @@ -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'. | diff --git a/docs/MultiChannelChannelListRequestObject.md b/docs/MultiChannelChannelListRequestObject.md index d1bd98e5..8eacf737 100644 --- a/docs/MultiChannelChannelListRequestObject.md +++ b/docs/MultiChannelChannelListRequestObject.md @@ -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) | | diff --git a/docs/MultiChannelChannelListResponseObject.md b/docs/MultiChannelChannelListResponseObject.md index adc21f3f..84e556e2 100644 --- a/docs/MultiChannelChannelListResponseObject.md +++ b/docs/MultiChannelChannelListResponseObject.md @@ -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'. | diff --git a/docs/MultiChannelChannelListSMSObject.md b/docs/MultiChannelChannelListSMSObject.md index ddfd68e8..d3557e4c 100644 --- a/docs/MultiChannelChannelListSMSObject.md +++ b/docs/MultiChannelChannelListSMSObject.md @@ -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) | | diff --git a/docs/MultiChannelChannelListSMSResponseObject.md b/docs/MultiChannelChannelListSMSResponseObject.md index c2afa9e2..14e7246b 100644 --- a/docs/MultiChannelChannelListSMSResponseObject.md +++ b/docs/MultiChannelChannelListSMSResponseObject.md @@ -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'. | diff --git a/docs/StatusCallbackMessage.md b/docs/StatusCallbackMessage.md index 562a0c72..b65dddc9 100644 --- a/docs/StatusCallbackMessage.md +++ b/docs/StatusCallbackMessage.md @@ -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) | |