Skip to content

Commit c7c8e97

Browse files
committed
code review
1 parent be81753 commit c7c8e97

7 files changed

Lines changed: 6 additions & 9 deletions

File tree

examples/snippets/conversation/messages/list/snippet.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
messages = sinch_client.conversation.messages.list(
2525
app_id=app_id,
26-
page_size=10
2726
)
2827

2928
page_counter = 1

examples/snippets/conversation/messages/list_last_messages_by_channel_identity/snippet.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323

2424
messages = sinch_client.conversation.messages.list_last_messages_by_channel_identity(
2525
channel_identities=channel_identities,
26-
messages_source="CONVERSATION_SOURCE",
27-
page_size=10,
2826
)
2927

3028
page_counter = 1

sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_button_boleto import (
1+
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_boleto_button import (
22
WhatsAppPaymentSettingsBoletoButton,
33
)
4-
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_button_payment_link import (
4+
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_payment_link_button import (
55
WhatsAppPaymentSettingsPaymentLinkButton,
66
)
7-
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_button_pix import (
7+
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_pix_button import (
88
WhatsAppPaymentSettingsPixButton,
99
)
1010

sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/whatsapp_payment_settings_button_boleto.py renamed to sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/whatsapp_payment_settings_boleto_button.py

File renamed without changes.

sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/whatsapp_payment_settings_button_payment_link.py renamed to sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/whatsapp_payment_settings_payment_link_button.py

File renamed without changes.

sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/whatsapp_payment_settings_button_pix.py renamed to sinch/domains/conversation/models/v1/messages/categories/channelspecific/whatsapp/buttons/whatsapp_payment_settings_pix_button.py

File renamed without changes.

sinch/domains/conversation/models/v1/messages/response/types/whatsapp_payment_button.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from typing import Union
2-
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_button_pix import (
2+
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_pix_button import (
33
WhatsAppPaymentSettingsPixButton,
44
)
5-
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_button_payment_link import (
5+
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_payment_link_button import (
66
WhatsAppPaymentSettingsPaymentLinkButton,
77
)
8-
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_button_boleto import (
8+
from sinch.domains.conversation.models.v1.messages.categories.channelspecific.whatsapp.buttons.whatsapp_payment_settings_boleto_button import (
99
WhatsAppPaymentSettingsBoletoButton,
1010
)
1111

0 commit comments

Comments
 (0)