Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SWI-6214 Update SDK Based on Recent Spec Changes #224

Merged
merged 1 commit into from
Sep 24, 2024
Merged
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: 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