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

com.ecwid.apiclient.v3.dto.extrafield.request.CustomersConfigCreateRequest.kt Maven / Gradle / Ivy

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

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

data class CustomersConfigCreateRequest(
	val newConfig: UpdatedCustomersConfig = UpdatedCustomersConfig()
) : ApiRequest {
	override fun toRequestInfo() = RequestInfo.createPostRequest(
		pathSegments = listOf(
			"store_extrafields",
			"customers"
		),
		httpBody = HttpBody.JsonBody(
			obj = newConfig
		)
	)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy