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

io.hackle.sdk.internal.utils.Json.kt Maven / Gradle / Ivy

The newest version!
package io.hackle.sdk.internal.utils

import com.google.gson.Gson
import com.google.gson.GsonBuilder

internal val GSON: Gson = GsonBuilder().create()

internal fun Any.toJson(): String = GSON.toJson(this)
internal inline fun  String.parseJson(): T = GSON.fromJson(this, T::class.java)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy