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

com.ecwid.apiclient.v3.dto.coupon.request.CouponCreateRequest.kt Maven / Gradle / Ivy

There is a newer version: 0.347.0
Show newest version
package com.ecwid.apiclient.v3.dto.coupon.request

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

data class CouponCreateRequest(
	val newCoupon: UpdatedCoupon = UpdatedCoupon()
) : ApiRequest {
	override fun toRequestInfo() = RequestInfo.createPostRequest(
		pathSegments = listOf(
			"discount_coupons"
		),
		httpBody = HttpBody.JsonBody(
			obj = newCoupon
		)
	)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy