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.
package com.ecwid.apiclient.v3.dto.cart.result
import com.ecwid.apiclient.v3.dto.cart.CartStringToStringMap
import com.ecwid.apiclient.v3.dto.common.ApiResultDTO
import com.ecwid.apiclient.v3.dto.common.BaseOrderTax
import com.ecwid.apiclient.v3.dto.common.ExtendedOrderTax
import com.ecwid.apiclient.v3.dto.order.enums.*
import java.util.*
data class CalculateOrderDetailsResult(
val email: String? = null,
val ipAddress: String? = null,
val hidden: Boolean? = null,
val createDate: Date? = null,
val createTimestamp: Int? = null,
val additionalInfo: CartStringToStringMap? = null,
val paymentParams: CartStringToStringMap? = null,
val customerId: Int? = null,
val customerTaxExempt: Boolean? = null,
val customerTaxId: String? = null,
val customerTaxIdValid: Boolean? = null,
val pricesIncludeTax: Boolean? = null,
val reversedTaxApplied: Boolean? = null,
val total: Double? = null,
val totalWithoutTax: Double? = null,
val subtotal: Double? = null,
val subtotalWithoutTax: Double? = null,
val usdTotal: Double? = null,
val totalBeforeGiftCardRedemption: Double? = null,
val giftCardRedemption: Double? = null,
val giftCardDoubleSpending: Boolean? = null,
val giftCardCode: String? = null,
val giftCardId: Int? = null,
val giftCardUuid: String? = null,
val tax: Double? = null,
val taxesOnShipping: List? = null,
val availableTaxes: List = emptyList(),
val predictedPackage: List = emptyList(),
val paymentStatus: OrderPaymentStatus = OrderPaymentStatus.INCOMPLETE,
val fulfillmentStatus: OrderFulfillmentStatus = OrderFulfillmentStatus.AWAITING_PROCESSING,
val couponDiscount: Double? = null,
val volumeDiscount: Double? = null,
val membershipBasedDiscount: Double? = null,
val totalAndMembershipBasedDiscount: Double? = null,
val discount: Double? = null,
val discountInfo: List? = null,
val discountCoupon: DiscountCouponInfo? = null,
val items: List? = null,
val billingPerson: PersonInfo? = null,
val shippingPerson: PersonInfo? = null,
val shippingOption: ShippingOptionInfo? = null,
val availableShippingOptions: List? = null,
val handlingFee: HandlingFeeInfo? = null,
val customSurcharges: List? = null,
) : ApiResultDTO {
data class TaxInfo(
val id: Int? = null,
val name: String? = null,
val enabled: Boolean? = null,
val includeInPrice: Boolean? = null,
val useShippingAddress: Boolean? = null,
val taxShipping: Boolean? = null,
val appliedByDefault: Boolean? = null,
val defaultTax: Double? = null,
val rules: List? = null
)
data class TaxRule(
val zoneId: String? = null,
val tax: Double? = null
)
data class PredictedPackage(
val height: Double? = null,
val width: Double? = null,
val length: Double? = null,
val weight: Double? = null,
val declaredValue: Double? = null
)
data class DiscountInfo(
val value: Double? = null,
val type: DiscountType? = null,
val base: DiscountBase? = null,
val orderTotal: Double? = null,
val description: String? = null,
val appliesToProducts: List? = null,
val appliesToItems: List? = null,
)
data class OrderItemDiscountInfo(
val value: Double? = null,
val type: DiscountType? = null,
val base: DiscountBase? = null,
val orderTotal: Double? = null
)
data class DiscountCouponInfo(
val name: String? = null,
val code: String? = null,
val discountType: DiscountCouponType? = null,
val status: DiscountCouponStatus? = null,
val discount: Double? = null,
val launchDate: Date? = null,
val expirationDate: Date? = null,
val totalLimit: Double? = null,
val usesLimit: DiscountCouponUsesLimit? = null,
val applicationLimit: DiscountCouponApplicationLimit? = null,
val creationDate: Date? = null,
val orderCount: Int? = null,
val catalogLimit: DiscountCouponCatalogLimit? = null
)
data class DiscountCouponCatalogLimit(
val products: List? = null,
val categories: List? = null
)
data class OrderItem(
val id: Int? = null,
val productId: Int? = null,
val categoryId: Int? = null,
val price: Double? = null,
val productPrice: Double? = null,
val shipping: Double? = null,
val tax: Double? = null,
val fixedShippingRate: Double? = null,
val couponAmount: Double? = null,
val sku: String? = null,
val name: String? = null,
val shortDescription: String? = null,
val quantity: Int? = null,
val quantityInStock: Int? = null,
val weight: Double? = null,
val imageUrl: String? = null,
val isShippingRequired: Boolean? = null,
val trackQuantity: Boolean? = null,
val fixedShippingRateOnly: Boolean? = null,
val digital: Boolean? = null,
val couponApplied: Boolean? = null,
val giftCard: Boolean? = null,
val selectedOptions: List? = null,
val combinationId: Int? = null,
val taxes: List? = null,
val files: List? = null,
val dimensions: ProductDimensions? = null,
val discounts: List? = null
)
data class OrderItemOption(
val name: String? = null,
val type: ProductOptionType? = null,
val value: String? = null,
val valuesArray: List? = null,
val files: List? = null,
val selections: List? = null
)
data class SelectionInfo(
val selectionTitle: String? = null,
val selectionModifier: Double? = null,
val selectionModifierType: PriceModifierType? = null
)
data class OrderItemTax(
override val name: String? = null,
override val value: Double? = null,
override val total: Double? = null,
val includeInPrice: Boolean? = null,
val taxType: OrderItemTaxType? = null,
val taxOnDiscountedSubtotal: Double? = null,
val taxOnShipping: Double? = null
) : BaseOrderTax
data class OrderItemProductFile(
val productFileId: Int? = null,
val maxDownloads: Int? = null,
val remainingDownloads: Int? = null,
val expire: Date? = null,
val name: String? = null,
val description: String? = null,
val size: Int? = null,
val adminUrl: String? = null,
val customerUrl: String? = null
)
data class ProductDimensions(
val length: Double? = null,
val width: Double? = null,
val height: Double? = null
)
data class OrderItemDiscounts(
val discountInfo: OrderItemDiscountInfo? = null,
val total: Double? = null
)
data class OrderItemOptionFile(
val id: Int? = null,
val name: String? = null,
val size: Int? = null,
val url: String? = null
)
data class PersonInfo(
val name: String? = null,
val companyName: String? = null,
val street: String? = null,
val city: String? = null,
val countryCode: String? = null,
val countryName: String? = null,
val postalCode: String? = null,
val stateOrProvinceCode: String? = null,
val stateOrProvinceName: String? = null,
val phone: String? = null
)
data class ShippingOptionInfo(
val shippingCarrierName: String? = null,
val shippingMethodName: String? = null,
val shippingRate: Double? = null,
val estimatedTransitTime: String? = null,
val isPickup: Boolean? = null,
val pickupInstruction: String? = null
)
data class HandlingFeeInfo(
val name: String? = null,
val value: Double? = null,
val description: String? = null,
val taxes: List? = null
)
data class HandlingFeeTax(
override val name: String? = null,
override val value: Double? = null,
override val total: Double? = null,
override val includeInPrice: Boolean? = null,
) : ExtendedOrderTax
data class TaxOnShipping(
override val name: String? = null,
override val value: Double? = null,
override val total: Double? = null
) : BaseOrderTax
data class Surcharge(
val id: String? = null,
val value: Double? = null,
val type: SurchargeType? = null,
val total: Double? = null,
val totalWithoutTax: Double? = null,
val description: String? = null,
val descriptionTranslated: String? = null,
val taxable: Boolean? = null,
val taxes: List? = null
)
}