com.ecwid.apiclient.v3.dto.customer.request.CustomerUpdateRequest.kt Maven / Gradle / Ivy
package com.ecwid.apiclient.v3.dto.customer.request
import com.ecwid.apiclient.v3.dto.ApiRequest
import com.ecwid.apiclient.v3.httptransport.HttpBody
import com.ecwid.apiclient.v3.impl.RequestInfo
data class CustomerUpdateRequest(
val customerId: Int = 0,
val updatedCustomer: UpdatedCustomer = UpdatedCustomer()
) : ApiRequest {
override fun toRequestInfo() = RequestInfo.createPutRequest(
pathSegments = listOf(
"customers",
"$customerId"
),
httpBody = HttpBody.JsonBody(
obj = updatedCustomer
)
)
}