/* Options: Date: 2024-07-03 12:57:12 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SuperAdminDeleteSupportCaseComment.* //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/support/cases/{SupportCaseId}/comments/{Id}", Verbs="DELETE") @ValidateRequest(Validator="IsAuthenticated") open class SuperAdminDeleteSupportCaseComment : IReturn, ISupportCase { /** * Enter the company id, if blank company id and you are an admin, your company id will be used. */ @ApiMember(Description="Enter the company id, if blank company id and you are an admin, your company id will be used.", IsRequired=true) var CompanyId:UUID? = null /** * The support case id */ @ApiMember(Description="The support case id", ParameterType="path") var SupportCaseId:Int? = null /** * The support case comment id */ @ApiMember(Description="The support case comment id", ParameterType="path") var Id:Int? = null companion object { private val responseType = SupportCaseCommentsResponse::class.java } override fun getResponseType(): Any? = SuperAdminDeleteSupportCaseComment.responseType } open class SupportCaseCommentsResponse { /** * The case id */ @ApiMember(Description="The case id") var SupportCaseId:Int? = null /** * The comments id */ @ApiMember(Description="The comments id") var Id:Int? = null /** * The case comment */ @ApiMember(Description="The case comment") var Comment:String? = null /** * The case comment created by */ @ApiMember(Description="The case comment created by") var CreatedBy:String? = null /** * The case comment created date */ @ApiMember(Description="The case comment created date") var Created:Date? = null } open interface ICompany { var CompanyId:UUID? } open interface ISupportCase : ICompany { var Id:Int? }