Updated on 2026-08-14

This commit is contained in:
Tangem 2022-03-25 20:08:36 +03:00
commit 040f53e52e
2 changed files with 3 additions and 1 deletions

@ -1 +1 @@
Subproject commit b3fb1483a37bf1fb7d9da3f9bd9424f693c0ec5b
Subproject commit 64ae04d2086e5a605dd4da3cba4af32a60d46c79

View file

@ -1,10 +1,12 @@
package com.tangem.tap.common.shop.shopify
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = true)
data class ShopifyShop(
val domain: String,
@Json(name = "storefrontApiKeyAndroid")
val storefrontApiKey: String,
val merchantID: String,
)