/* Options: Date: 2025-08-04 03:36:15 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: AddTenderRound.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/tender/{tenderid}/round", Verbs="POST") open class AddTenderRound : TenderRoundBase(), IReturn, IPost { var TenderId:Int? = null var IsStarter:Boolean? = null companion object { private val responseType = ModifyEntityResponse::class.java } override fun getResponseType(): Any? = AddTenderRound.responseType } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null } open class TenderRoundBase { var Name:String? = null var IsQuestionEnabled:Boolean? = null var QuestionDeadline:Date? = null var AnswerDeadline:Date? = null var SubmissionDeadline:Date? = null var IsSupplementaryEnabled:Boolean? = null var SupplementaryRequestDeadline:Date? = null var SupplementaryDeadline:Date? = null var AnnouncementDateTime:Date? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null }