Skip to content

Commit f0da7e3

Browse files
committed
Merge branch 'brtc-python-sdk' of https://github.com/Bandwidth/python-sdk into brtc-python-sdk
2 parents af0861f + 5f671d7 commit f0da7e3

25 files changed

+25
-25
lines changed

bandwidth.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1871,7 +1871,7 @@ components:
18711871
type: string
18721872
description: >-
18731873
The ID of the Application your from number or senderId is associated
1874-
with in the Bandwidth Phone Number Dashboard.
1874+
with in the Bandwidth App.
18751875
example: 93de2206-9669-4e07-948d-329f4b722ee2
18761876
priorityEnum:
18771877
type: string

bandwidth/models/inbound_callback_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class InboundCallbackMessage(BaseModel):
3636
""" # noqa: E501
3737
id: StrictStr = Field(description="A unique identifier of the message.")
3838
owner: StrictStr = Field(description="The Bandwidth phone number or alphanumeric identifier associated with the message.")
39-
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")
39+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
4040
time: datetime
4141
segment_count: StrictInt = Field(description="The number of segments the user's message is broken into before sending over carrier networks.", alias="segmentCount")
4242
direction: MessageDirectionEnum

bandwidth/models/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Message(BaseModel):
3232
""" # noqa: E501
3333
id: Optional[StrictStr] = Field(default=None, description="The id of the message.")
3434
owner: Optional[StrictStr] = Field(default=None, description="The Bandwidth phone number associated with the message.")
35-
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")
35+
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")
3636
time: Optional[datetime] = Field(default=None, description="The datetime stamp of the message in ISO 8601")
3737
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")
3838
direction: Optional[MessageDirectionEnum] = None

bandwidth/models/message_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MessageRequest(BaseModel):
3030
"""
3131
MessageRequest
3232
""" # noqa: E501
33-
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")
33+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3434
to: List[StrictStr] = Field(description="The phone number(s) the message should be sent to in E164 format.")
3535
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")
3636
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.")

bandwidth/models/multi_channel_channel_list_mms_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MultiChannelChannelListMMSObject(BaseModel):
3030
MultiChannelChannelListMMSObject
3131
""" # noqa: E501
3232
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
33-
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")
33+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3434
channel: MultiChannelMessageChannelEnum
3535
content: MmsMessageContent
3636
additional_properties: Dict[str, Any] = {}

bandwidth/models/multi_channel_channel_list_mms_response_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MultiChannelChannelListMMSResponseObject(BaseModel):
3030
MultiChannelChannelListMMSResponseObject
3131
""" # noqa: E501
3232
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
33-
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")
33+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3434
channel: MultiChannelMessageChannelEnum
3535
content: MmsMessageContent
3636
owner: StrictStr = Field(description="The Bandwidth senderId associated with the message. Identical to 'from'.")

bandwidth/models/multi_channel_channel_list_object_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class MultiChannelChannelListObjectBase(BaseModel):
2929
MultiChannelChannelListObjectBase
3030
""" # noqa: E501
3131
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
32-
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")
32+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3333
channel: MultiChannelMessageChannelEnum
3434
additional_properties: Dict[str, Any] = {}
3535
__properties: ClassVar[List[str]] = ["from", "applicationId", "channel"]

bandwidth/models/multi_channel_channel_list_rbm_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MultiChannelChannelListRBMObject(BaseModel):
3030
MultiChannelChannelListRBMObject
3131
""" # noqa: E501
3232
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
33-
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")
33+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3434
channel: MultiChannelMessageChannelEnum
3535
content: MultiChannelChannelListRBMObjectAllOfContent
3636
additional_properties: Dict[str, Any] = {}

bandwidth/models/multi_channel_channel_list_rbm_response_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MultiChannelChannelListRBMResponseObject(BaseModel):
3030
MultiChannelChannelListRBMResponseObject
3131
""" # noqa: E501
3232
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
33-
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")
33+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3434
channel: MultiChannelMessageChannelEnum
3535
content: MultiChannelChannelListRBMObjectAllOfContent
3636
owner: StrictStr = Field(description="The Bandwidth senderId associated with the message. Identical to 'from'.")

bandwidth/models/multi_channel_channel_list_sms_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MultiChannelChannelListSMSObject(BaseModel):
3030
MultiChannelChannelListSMSObject
3131
""" # noqa: E501
3232
var_from: StrictStr = Field(description="The sender ID of the message. This could be an alphanumeric sender ID.", alias="from")
33-
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")
33+
application_id: StrictStr = Field(description="The ID of the Application your from number or senderId is associated with in the Bandwidth App.", alias="applicationId")
3434
channel: MultiChannelMessageChannelEnum
3535
content: SmsMessageContent
3636
additional_properties: Dict[str, Any] = {}

0 commit comments

Comments
 (0)