Updated on 2026-08-14

This commit is contained in:
Tangem 2022-03-25 20:08:59 +04:00
parent d10ca65bba
commit c0032b70c8
2 changed files with 3 additions and 1 deletions

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,
)