All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.ecwid.apiclient.v3.converter.FetchedCombination.kt Maven / Gradle / Ivy
package com.ecwid.apiclient.v3.converter
import com.ecwid.apiclient.v3.dto.product.enums.toAttributeValueAlias
import com.ecwid.apiclient.v3.dto.variation.request.UpdatedVariation
import com.ecwid.apiclient.v3.dto.variation.result.FetchedVariation
fun FetchedVariation.toUpdated(): UpdatedVariation {
return UpdatedVariation(
sku = sku,
quantity = quantity,
locationInventory = locationInventory,
outOfStockVisibilityBehaviour = outOfStockVisibilityBehaviour,
unlimited = unlimited,
warningLimit = warningLimit,
minPurchaseQuantity = minPurchaseQuantity,
maxPurchaseQuantity = maxPurchaseQuantity,
price = price,
costPrice = costPrice,
wholesalePrices = wholesalePrices?.map(FetchedVariation.WholesalePrice::toUpdated),
compareToPrice = compareToPrice,
lowestPrice = lowestPrice,
lowestPriceSettings = lowestPriceSettings.toUpdated(),
weight = weight,
dimensions = dimensions?.toUpdated(),
volume = volume,
attributes = attributes?.map(FetchedVariation.AttributeValue::toUpdated),
externalReferenceId = externalReferenceId,
options = options?.map(FetchedVariation.Option::toUpdated),
isShippingRequired = isShippingRequired,
customsHsTariffCode = customsHsTariffCode,
subscriptionSettings = subscriptionSettings?.toUpdated(),
alt = alt?.toUpdated()
)
}
fun FetchedVariation.WholesalePrice.toUpdated() = UpdatedVariation.WholesalePrice(
quantity = quantity,
price = price
)
fun FetchedVariation.AttributeValue.toUpdated() = UpdatedVariation.AttributeValue(
id = id,
alias = type?.toAttributeValueAlias(),
value = value,
valueTranslated = valueTranslated,
show = show,
)
fun FetchedVariation.Option.toUpdated() = UpdatedVariation.Option(
name = name,
value = value
)
fun FetchedVariation.ProductDimensions.toUpdated() = UpdatedVariation.ProductDimensions(
length = length,
width = width,
height = height
)
private fun FetchedVariation.SubscriptionSettings.toUpdated() = UpdatedVariation.SubscriptionSettings(
subscriptionAllowed = subscriptionAllowed,
oneTimePurchaseAllowed = oneTimePurchaseAllowed,
oneTimePurchasePrice = oneTimePurchasePrice,
recurringChargeSettings = recurringChargeSettings.toUpdated()
)
private fun List.toUpdated() = map {
UpdatedVariation.RecurringChargeSettings(
recurringInterval = it.recurringInterval,
recurringIntervalCount = it.recurringIntervalCount,
subscriptionPriceWithSignUpFee = it.subscriptionPriceWithSignUpFee
)
}
private fun FetchedVariation.LowestPriceSettings.toUpdated() = UpdatedVariation.LowestPriceSettings(
lowestPriceEnabled = lowestPriceEnabled,
manualLowestPrice = manualLowestPrice,
)