All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin-client.infrastructure.ByteArrayAdapter.kt.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package {{packageName}}.infrastructure

import com.squareup.moshi.FromJson
import com.squareup.moshi.ToJson

class ByteArrayAdapter {
    @ToJson
    fun toJson(data: ByteArray): String = String(data)

    @FromJson
    fun fromJson(data: String): ByteArray = data.toByteArray()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy