Skip to content

Commit 6cb1170

Browse files
committed
Add registrationAnswers to FetchedProfile
1 parent bd5e8ba commit 6cb1170

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ data class FetchedStoreProfile(
2525
val productFiltersSettings: ProductFiltersSettings? = null,
2626
val fbMessengerSettings: FBMessengerSettings? = null,
2727
val orderInvoiceSettings: OrderInvoiceSettings? = null,
28-
val giftCardSettings: GiftCardSettings? = null
28+
val giftCardSettings: GiftCardSettings? = null,
29+
val registrationAnswers: RegistrationAnswers? = null,
2930
) : ApiFetchedDTO {
3031

3132
data class GeneralInfo(
@@ -56,6 +57,16 @@ data class FetchedStoreProfile(
5657
val supportEmail: String? = null
5758
)
5859

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+
5970
data class Settings(
6071
val closed: Boolean? = null,
6172
val storeName: String? = null,

0 commit comments

Comments
 (0)