Skip to content

Commit 17b768f

Browse files
Generate SDK with OpenAPI Generator Version 7.7.0 (#224)
Co-authored-by: DX-Bandwidth <dx@bandwidth.com>
1 parent 8e77f24 commit 17b768f

5 files changed

+4
-6
lines changed

bandwidth.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1862,7 +1862,6 @@ components:
18621862
- from
18631863
- text
18641864
- media
1865-
- priority
18661865
messageDeliveredCallback:
18671866
description: Message Delivered Callback
18681867
type: object
@@ -2035,7 +2034,6 @@ components:
20352034
- from
20362035
- text
20372036
- tag
2038-
- priority
20392037
callbackMethodEnum:
20402038
type: string
20412039
nullable: true

bandwidth/models/message_failed_callback_message.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class MessageFailedCallbackMessage(BaseModel):
4141
text: StrictStr
4242
tag: StrictStr
4343
media: Optional[List[StrictStr]] = None
44-
priority: PriorityEnum
44+
priority: Optional[PriorityEnum] = None
4545
additional_properties: Dict[str, Any] = {}
4646
__properties: ClassVar[List[str]] = ["id", "owner", "applicationId", "time", "segmentCount", "direction", "to", "from", "text", "tag", "media", "priority"]
4747

bandwidth/models/message_sending_callback_message.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class MessageSendingCallbackMessage(BaseModel):
4141
text: StrictStr
4242
tag: Optional[StrictStr] = None
4343
media: List[StrictStr]
44-
priority: PriorityEnum
44+
priority: Optional[PriorityEnum] = None
4545
additional_properties: Dict[str, Any] = {}
4646
__properties: ClassVar[List[str]] = ["id", "owner", "applicationId", "time", "segmentCount", "direction", "to", "from", "text", "tag", "media", "priority"]
4747

docs/MessageFailedCallbackMessage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
1717
**text** | **str** | |
1818
**tag** | **str** | |
1919
**media** | **List[str]** | | [optional]
20-
**priority** | [**PriorityEnum**](PriorityEnum.md) | |
20+
**priority** | [**PriorityEnum**](PriorityEnum.md) | | [optional]
2121

2222
## Example
2323

docs/MessageSendingCallbackMessage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
1717
**text** | **str** | |
1818
**tag** | **str** | | [optional]
1919
**media** | **List[str]** | |
20-
**priority** | [**PriorityEnum**](PriorityEnum.md) | |
20+
**priority** | [**PriorityEnum**](PriorityEnum.md) | | [optional]
2121

2222
## Example
2323

0 commit comments

Comments
 (0)