Skip to content

Commit

Permalink
Make some refund fields optional (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc authored May 10, 2024
1 parent 8169a74 commit a31961b
Show file tree
Hide file tree
Showing 2 changed files with 3 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 @@ -12,7 +12,7 @@ val jvmVersion = JavaVersion.VERSION_11

allprojects {
group = "org.stellar.wallet-sdk"
version = "1.5.0"
version = "1.5.1"
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ data class Refunds(
@Serializable
data class Payment(
@SerialName("amount") val amount: String,
@SerialName("fee") val fee: String,
@SerialName("fee") val fee: String? = null,
@SerialName("id") val id: String,
@SerialName("id_type") val idType: String
@SerialName("id_type") val idType: String? = null
)

@Serializable
Expand Down

0 comments on commit a31961b

Please sign in to comment.