Skip to content

Commit

Permalink
Generate SDK with OpenAPI Generator Version 7.7.0 (#224)
Browse files Browse the repository at this point in the history
Co-authored-by: DX-Bandwidth <[email protected]>
  • Loading branch information
band-swi[bot] and DX-Bandwidth authored Sep 24, 2024
1 parent 8e77f24 commit 17b768f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions bandwidth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1862,7 +1862,6 @@ components:
- from
- text
- media
- priority
messageDeliveredCallback:
description: Message Delivered Callback
type: object
Expand Down Expand Up @@ -2035,7 +2034,6 @@ components:
- from
- text
- tag
- priority
callbackMethodEnum:
type: string
nullable: true
Expand Down
2 changes: 1 addition & 1 deletion bandwidth/models/message_failed_callback_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MessageFailedCallbackMessage(BaseModel):
text: StrictStr
tag: StrictStr
media: Optional[List[StrictStr]] = None
priority: PriorityEnum
priority: Optional[PriorityEnum] = None
additional_properties: Dict[str, Any] = {}
__properties: ClassVar[List[str]] = ["id", "owner", "applicationId", "time", "segmentCount", "direction", "to", "from", "text", "tag", "media", "priority"]

Expand Down
2 changes: 1 addition & 1 deletion bandwidth/models/message_sending_callback_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MessageSendingCallbackMessage(BaseModel):
text: StrictStr
tag: Optional[StrictStr] = None
media: List[StrictStr]
priority: PriorityEnum
priority: Optional[PriorityEnum] = None
additional_properties: Dict[str, Any] = {}
__properties: ClassVar[List[str]] = ["id", "owner", "applicationId", "time", "segmentCount", "direction", "to", "from", "text", "tag", "media", "priority"]

Expand Down
2 changes: 1 addition & 1 deletion docs/MessageFailedCallbackMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Name | Type | Description | Notes
**text** | **str** | |
**tag** | **str** | |
**media** | **List[str]** | | [optional]
**priority** | [**PriorityEnum**](PriorityEnum.md) | |
**priority** | [**PriorityEnum**](PriorityEnum.md) | | [optional]

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/MessageSendingCallbackMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Name | Type | Description | Notes
**text** | **str** | |
**tag** | **str** | | [optional]
**media** | **List[str]** | |
**priority** | [**PriorityEnum**](PriorityEnum.md) | |
**priority** | [**PriorityEnum**](PriorityEnum.md) | | [optional]

## Example

Expand Down

0 comments on commit 17b768f

Please sign in to comment.