/* Options: Date: 2025-04-05 01:39:32 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsTypeSuperAdminUserQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/superadmin/commentstype", Verbs="GET") @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) open class CommentsTypeSuperAdminUserQuery : IReturn { companion object { private val responseType = CommentsTypeResponse::class.java } override fun getResponseType(): Any? = CommentsTypeSuperAdminUserQuery.responseType } open class CommentsTypeResponse { var Id:Int? = null var Name:String? = null var Description:String? = null }