/* Options: Date: 2026-08-27 07:11:31 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: GetSalesReps.* //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="/salesReps/{brand}/{posCode}", Verbs="GET") open class GetSalesReps : IReturn { /** * Brand Triagram, e.g. CAR, IWC, VAC */ @ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true) open var brand:String? = null /** * Point of Sale Code, e.g. ES100:102048 */ @ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true) open var posCode:String? = null /** * Booster Customer Id */ @ApiMember(Description="Booster Customer Id") open var boosterCustomerId:Int? = null /** * Whether the sales representative's account is locked. */ @ApiMember(Description="Whether the sales representative's account is locked.") open var accountLocked:Boolean? = null /** * Whether the sales representative's account is pinned. */ @ApiMember(Description="Whether the sales representative's account is pinned.") open var isPinned:Boolean? = null companion object { private val responseType = GetSalesRepsResponse::class.java } override fun getResponseType(): Any? = GetSalesReps.responseType } open class GetSalesRepsResponse : ArrayList() { } open class SalesRep { /** * The first name of the sales representative. */ @ApiMember(Description="The first name of the sales representative.", IsRequired=true) open var firstName:String? = null /** * The last name of the sales representative. */ @ApiMember(Description="The last name of the sales representative.", IsRequired=true) open var lastName:String? = null /** * The email address of the sales representative. */ @ApiMember(Description="The email address of the sales representative.", IsRequired=true) open var email:String? = null /** * The unique user ID of the sales representative. */ @ApiMember(Description="The unique user ID of the sales representative.", IsRequired=true) open var userId:UUID? = null /** * Whether the sales representative's account is locked. */ @ApiMember(Description="Whether the sales representative's account is locked.", IsRequired=true) open var accountLocked:Boolean? = null /** * Whether the sales representative's account is pinned. */ @ApiMember(Description="Whether the sales representative's account is pinned.", IsRequired=true) open var isPinned:Boolean? = null }