/* Options: Date: 2026-01-22 01:55:14 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PublishAnimals.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/api/v1/marketplace/animals", Verbs="POST") open class PublishAnimals : IReturn, IPost { var name:String? = null var phoneNumber:String? = null var regionId:Int? = null var cityId:Int? = null var categoryId:Int? = null var purposeId:Int? = null var description:String? = null var quantity:Int? = null var priceTypeId:Int? = null var price:BigDecimal? = null companion object { private val responseType = PublishAnimalsResponse::class.java } override fun getResponseType(): Any? = PublishAnimals.responseType } open class PublishAnimalsResponse : BaseResponse() { var id:String? = null } open class Status { var message:String? = null var statusCode:Int? = null } open class BaseResponse { var status:Status? = null }