/* Options: Date: 2025-08-04 03:35:06 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddContract.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/user/{supplieruserid}/contract", Verbs="POST") open class AddContract : ModifyContractBase(), IReturn, IPost { companion object { private val responseType = ModifyEntityResponse::class.java } override fun getResponseType(): Any? = AddContract.responseType } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } open class ModifyContractBase : ModifyRequestBase() { var TenderUserId:Int? = null var ContractIdentifier:String? = null var SupplierUserId:Int? = null var Buyer:String? = null var Subject:String? = null var ConfirmationDeadline:Date? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }