Skip to content

Commit

Permalink
[impr/send-response] Add statusMessage in MultipleDetailMessageSentRe…
Browse files Browse the repository at this point in the history
…sponse
  • Loading branch information
Palbahngmiyine committed Nov 23, 2022
1 parent ea4e830 commit 048183b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "net.nurigo"
version = "4.2.6"
version = "4.2.7"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import kotlinx.serialization.Serializable

@Serializable
data class DefaultAgent(
val sdkVersion: String = "java/4.2.6",
val sdkVersion: String = "java/4.2.7",
val osPlatform: String = "${System.getProperty("os.name")} | ${System.getProperty("java.version")}"
)
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ data class MultipleDetailMessageSentResponse(
data class MessageList(
var messageId: String? = null,
var statusCode: String? = null,
var customFields: Map<String, String>? = null
var customFields: Map<String, String>? = null,
var statusMessage: String? = null
)
}

0 comments on commit 048183b

Please sign in to comment.