All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ecwid.apiclient.v3.dto.cart.request.ConvertCartToOrderRequest.kt Maven / Gradle / Ivy

package com.ecwid.apiclient.v3.dto.cart.request

import com.ecwid.apiclient.v3.dto.ApiRequest
import com.ecwid.apiclient.v3.httptransport.HttpBody
import com.ecwid.apiclient.v3.impl.RequestInfo

data class ConvertCartToOrderRequest(
	val cartId: String = ""
) : ApiRequest {
	override fun toRequestInfo() = RequestInfo.createPostRequest(
		pathSegments = listOf(
			"carts",
			cartId,
			"place"
		),
		httpBody = HttpBody.EmptyBody
	)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy