We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd5e8ba commit 6cb1170Copy full SHA for 6cb1170
1 file changed
src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt
@@ -25,7 +25,8 @@ data class FetchedStoreProfile(
25
val productFiltersSettings: ProductFiltersSettings? = null,
26
val fbMessengerSettings: FBMessengerSettings? = null,
27
val orderInvoiceSettings: OrderInvoiceSettings? = null,
28
- val giftCardSettings: GiftCardSettings? = null
+ val giftCardSettings: GiftCardSettings? = null,
29
+ val registrationAnswers: RegistrationAnswers? = null,
30
) : ApiFetchedDTO {
31
32
data class GeneralInfo(
@@ -56,6 +57,16 @@ data class FetchedStoreProfile(
56
57
val supportEmail: String? = null
58
)
59
60
+ data class RegistrationAnswers(
61
+ val goods: String? = null,
62
+ val alreadySelling: String? = null,
63
+ val forSomeone: String? = null,
64
+ val website: String? = null,
65
+ val platform: String? = null,
66
+ val facebook: String? = null,
67
+ val otherGoods: String? = null
68
+ )
69
+
70
data class Settings(
71
val closed: Boolean? = null,
72
val storeName: String? = null,
0 commit comments