/* Options: Date: 2025-11-04 02:25:56 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ArticleTypeQuery.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/articles/types", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ArticleTypeQuery : IReturn, ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") override var CompanyId:UUID? = null companion object { private val responseType = ArticleTypesQueryResponse::class.java } override fun getResponseType(): Any? = ArticleTypeQuery.responseType } open class ArticleTypesQueryResponse { /** * The article type id */ @ApiMember(Description="The article type id") open var Id:Int? = null /** * The article type name */ @ApiMember(Description="The article type name") open var Name:String? = null /** * The article type description */ @ApiMember(Description="The article type description") open var Description:String? = null } interface ICompany { var CompanyId:UUID? }