Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ECWID-139752 New Reports: addToCartConversion report internal api: ch… #407

Merged
merged 1 commit into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ data class FetchedReportResponse(

data class AdditionalProductData(
val productName: String? = null,
val productSmallThumbnailUrl: String? = null,
val productUrl: String? = null,
val productEditUrl: String? = null,
val productSku: String? = null,
val productImageUrl: String? = null,
val productThumbnailUrl: String? = null,
) : FetchedAdditionalData(AdditionalDataType.PRODUCT)

data class AdditionalCouponData(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ val otherNullablePropertyRules: List<NullablePropertyRule<*, *>> = listOf(
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalInventoryData::exampleOrder),

AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productName),
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productSmallThumbnailUrl),
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productUrl),
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productEditUrl),
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productSku),
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productImageUrl),
AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalProductData::productThumbnailUrl),

AllowNullable(FetchedReportResponse.FetchedAdditionalData.AdditionalCouponData::couponName),

Expand Down
Loading