Skip to content

Commit 8202560

Browse files
committed
DEVEXP-1386: Conversation sources generated
1 parent d605410 commit 8202560

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/api/v1/ContactsService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ IdentityConflictsListResponse listIdentityConflicts(
168168
* will be moved from the source contact to the destination contact only for channels that
169169
* weren't present there before. Moved channel identities will be placed at the bottom of the
170170
* channel priority list. Optional fields from the source contact will be copied only if
171-
* corresponding fields in the destination contact are empty The contact being removed cannot be
171+
* corresponding fields in the destination contact are empty. The contact being removed cannot be
172172
* referenced after this call.
173173
*
174174
* @param destinationId The unique ID of the contact that should be kept when merging two

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/api/v1/ConversationsService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ RecentConversationsListResponse listRecent(RecentConversationsListQueryParameter
136136
* Stop conversation
137137
*
138138
* <p>This operation stops the referenced conversation, if the conversation is still active. In
139-
* Conversation mode, A new conversation will be created if a new message is exchanged between the
139+
* Conversation mode, a new conversation will be created if a new message is exchanged between the
140140
* app or contact that was part of the stopped conversation.
141141
*
142142
* @param conversationId The unique ID of the conversation. This is generated by the system.

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/models/v1/ReasonCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class ReasonCode extends EnumDynamic<String, ReasonCode> {
5959
new ReasonCode("CHANNEL_CONFIGURATION_MISSING");
6060

6161
/**
62-
* Some of the referenced media files is of a unsupported media type. Please read the <a
62+
* Some of the referenced media files are of an unsupported media type. Please read the <a
6363
* href="https://developers.sinch.com/docs/conversation/channel-support/">channel support
6464
* documentation</a> page to find out the limitations on media that the different channels impose.
6565
*/

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/models/v1/capability/response/QueryCapabilityResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
import com.sinch.sdk.domains.conversation.models.v1.Recipient;
1515

1616
/**
17-
* An CapabilityResponse contains the identity of the recipient for which will be perform a
18-
* capability lookup.
17+
* A CapabilityResponse contains the identity of the recipient for which a capability lookup will be
18+
* performed.
1919
*/
2020
@JsonDeserialize(builder = QueryCapabilityResponseImpl.Builder.class)
2121
public interface QueryCapabilityResponse {

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/models/v1/sinchevents/contact/ContactDeleteEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
1414
import java.time.Instant;
1515

16-
/** This callback is sent when a new contact is deleted. */
16+
/** This callback is sent when a contact is deleted. */
1717
@JsonDeserialize(builder = ContactDeleteEventImpl.Builder.class)
1818
public interface ContactDeleteEvent
1919
extends com.sinch.sdk.domains.conversation.models.v1.sinchevents.ConversationSinchEvent {

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/models/v1/sinchevents/contact/ContactUpdateEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
1414
import java.time.Instant;
1515

16-
/** This callback is sent when a new contact is updated. */
16+
/** This callback is sent when a contact is updated. */
1717
@JsonDeserialize(builder = ContactUpdateEventImpl.Builder.class)
1818
public interface ContactUpdateEvent
1919
extends com.sinch.sdk.domains.conversation.models.v1.sinchevents.ConversationSinchEvent {

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/models/v1/sinchevents/delivery/DeliveryStatus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class DeliveryStatus extends EnumDynamic<String, DeliveryStatus> {
2020
/** Message delivery failed. */
2121
public static final DeliveryStatus FAILED = new DeliveryStatus("FAILED");
2222

23-
/** The Conversation API app is switch to a different channel to deliver the message. */
23+
/** The Conversation API app is switching to a different channel to deliver the message. */
2424
public static final DeliveryStatus SWITCHING_CHANNEL = new DeliveryStatus("SWITCHING_CHANNEL");
2525

2626
private static final EnumSupportDynamic<String, DeliveryStatus> ENUM_SUPPORT =

openapi-contracts/src/main/com/sinch/sdk/domains/conversation/models/v1/transcoding/request/TranscodeMessageRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface TranscodeMessageRequest {
3838
AppMessage<?> getAppMessage();
3939

4040
/**
41-
* The list of channels for which the message shall be transcoded to.
41+
* The list of channels for which the message shall be transcoded.
4242
*
4343
* <p>Field is required
4444
*

0 commit comments

Comments
 (0)