/* Options: Date: 2026-09-23 03:41:28 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ArticleMappingsQuery.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/articles/mappings", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ArticleMappingsQuery : IReturn>, ICompany { /** * Company to show article mappings for */ @ApiMember(Description="Company to show article mappings for") override var CompanyId:UUID? = null /** * The Reference Type to filter on: StripeArticle, EAccountingArticle */ @ApiMember(Description="The Reference Type to filter on: StripeArticle, EAccountingArticle") open var ReferenceType:String? = null /** * Article to show mappings for */ @ApiMember(Description="Article to show mappings for") open var ArticleId:Int? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = ArticleMappingsQuery.responseType } interface ICompany { var CompanyId:UUID? } open class ArticleMappingResponse { /** * The company id */ @ApiMember(Description="The company id") open var CompanyId:UUID? = null /** * The id */ @ApiMember(Description="The id") open var Id:UUID? = null /** * The BokaMera article id */ @ApiMember(Description="The BokaMera article id") open var ArticleId:Int? = null /** * The external reference */ @ApiMember(Description="The external reference") open var ExternalReference:String? = null /** * The Reference Type */ @ApiMember(Description="The Reference Type") open var ReferenceType:String? = null }