Updated on 2026-08-14

This commit is contained in:
Tangem 2023-07-17 16:47:29 +03:00
parent 4b27113806
commit 0273592606
4 changed files with 18 additions and 17 deletions

View file

@ -5,8 +5,10 @@ import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = true)
data class ShopifyShop(
@Json(name = "domain")
val domain: String,
@Json(name = "storefrontApiKeyAndroid")
val storefrontApiKey: String,
val merchantID: String,
@Json(name = "merchantID")
val merchantID: String?,
)