/* Options: Date: 2025-08-04 04:11:43 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: BrowseLegalRepresentative.* //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}/user/{userid}/procurement/{procurementid}/legalrepresentative/{legalrepresentativeId}", Verbs="GET") open class BrowseLegalRepresentative : LegalRepresentativeBase(), IReturn, IPost { var LegalRepresentativeId:Int? = null companion object { private val responseType = BrowseLegalRepresentativeResponse::class.java } override fun getResponseType(): Any? = BrowseLegalRepresentative.responseType } open class BrowseLegalRepresentativeResponse : ResponseBase() { var LegalRepresentative:LegalRepresentativeDetails? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } open class LegalRepresentativeBase { var TenderId:Int? = null var UserId:Int? = null var ProcurementId:Int? = null } open class ModifyLegalRepresentativeBase : ModifyRequestBase() { var ProcurementId:Int? = null var Position:String? = null var Name:String? = null var Address:String? = null var BirthDate:Date? = null var Email:String? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class LegalRepresentativeDetails : ModifyLegalRepresentativeBase() { var Id:Int? = null } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }