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

com.ecwid.apiclient.v3.dto.customer.request.MassUpdateCustomer.kt Maven / Gradle / Ivy

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

import com.ecwid.apiclient.v3.dto.common.ApiRequestDTO
import com.ecwid.apiclient.v3.dto.customer.enums.SelectMode

data class MassUpdateCustomer(
	val ids: List? = null,
	val mode: SelectMode = SelectMode.ALL,
	val delete: Boolean? = null,
	val customer: UpdatedCustomer? = null
) : ApiRequestDTO {

	data class UpdatedCustomer(
		val customerGroupId: Int? = null,
		val taxExempt: Boolean? = null,
		val acceptMarketing: Boolean? = null,
	)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy