/* Options: Date: 2025-05-06 14:28:39 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateMainOwner.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/CRUD/MainOwner/Create", Verbs="POST") open class CreateMainOwner : IReturn { var idPath:String? = null var name:String? = null var description:String? = null var genrePath:String? = null var locationPath:String? = null companion object { private val responseType = CreateMainOwnerResponse::class.java } override fun getResponseType(): Any? = CreateMainOwner.responseType } open class CreateMainOwnerResponse { var id:Int? = null var responseStatus:ResponseStatus? = null }