Skip to content
Snippets Groups Projects
Commit 8ef20e7a authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Updated SendReport model ByteArray params -> String

These Strings must be decoded from Base64 to ByteArray by the client
parent 4c0f99ba
Branches
No related tags found
No related merge requests found
package io.elixxir.xxclient.models
import com.google.gson.annotations.SerializedName
import io.elixxir.xxclient.utils.RoundId
data class SendReport(
@SerializedName("Rounds")
val roundIdList: List<RoundId>?,
val messageId: ByteArray?,
@SerializedName("MessageID")
val messageId: String?,
@SerializedName("Timestamp")
val timestamp: Long?,
@SerializedName("RoundURL")
val roundUrl: String?,
val keyResidue: ByteArray?
@SerializedName("KeyResidue")
val keyResidue: String?
) : BindingsModel
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment