/* Options: Date: 2026-08-27 08:01:58 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPosBrand.* //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="/security/pos", Verbs="GET") open class GetPosBrand : IReturn, IPagedRequest { /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) open var brand:String? = null /** * Mnemonic Code to Check */ @ApiMember(Description="Mnemonic Code to Check") open var mnemonicCode:String? = null /** * Business Unit Code */ @ApiMember(Description="Business Unit Code") open var buCode:String? = null /** * Index of the result set returned */ @ApiMember(Description="Index of the result set returned", IsRequired=true) override var page:Int? = null /** * Size of the result set returned */ @ApiMember(Description="Size of the result set returned", IsRequired=true) override var items:Int? = null /** * Omit precise record count - save on performance */ @ApiMember(Description="Omit precise record count - save on performance") override var noCount:Boolean? = null /** * Sorting expression */ @ApiMember(Description="Sorting expression") override var sortBy:String? = null companion object { private val responseType = GetPosBrandResponse::class.java } override fun getResponseType(): Any? = GetPosBrand.responseType } open class GetPosBrandResponse { /** * Index of the result set returnedr */ @ApiMember(Description="Index of the result set returnedr", IsRequired=true) open var page:Int? = null /** * Size of the result set returned */ @ApiMember(Description="Size of the result set returned", IsRequired=true) open var items:Int? = null /** * Total amount of pages / result sets */ @ApiMember(Description="Total amount of pages / result sets", IsRequired=true) open var totalPages:Int? = null /** * Total amount of results */ @ApiMember(Description="Total amount of results", IsRequired=true) open var totalResults:Int? = null /** * List of Users */ @ApiMember(Description="List of Users", IsRequired=true) open var elements:ArrayList? = null } interface IPagedRequest { var page:Int? var items:Int? var noCount:Boolean? var sortBy:String? } open class Scope { /** * Scope Code - combination of BU / Brand */ @ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true) open var scopeCode:String? = null /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) open var buCode:String? = null /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) open var brand:String? = null /** * Description of the combination */ @ApiMember(Description="Description of the combination", IsRequired=true) open var description:String? = null } open class PosBrand : Scope() { /** * Pos code */ @ApiMember(Description="Pos code", IsRequired=true) open var posCode:String? = null /** * Pos name */ @ApiMember(Description="Pos name", IsRequired=true) open var name:String? = null /** * Pos city */ @ApiMember(Description="Pos city", IsRequired=true) open var city:String? = null /** * Pos address */ @ApiMember(Description="Pos address", IsRequired=true) open var address:String? = null /** * Pos country */ @ApiMember(Description="Pos country", IsRequired=true) open var country:String? = null }