/* Options: Date: 2026-06-14 21:36:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetPromoterTypes.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Booster.Microservices.ServiceModel.Common; using Booster.Microservices.ServiceModel.Sale; namespace Booster.Microservices.ServiceModel.Common { public partial class BaseRequest : IRequest { public virtual string sid { get; set; } public virtual string app { get; set; } public virtual string _os { get; set; } public virtual string _appVersion { get; set; } public virtual string _searchMethod { get; set; } } public partial interface IRequest { string sid { get; set; } string app { get; set; } } } namespace Booster.Microservices.ServiceModel.Sale { [Route("/warranty/v1/promotertypes/{promoterTypeId*}", "GET")] public partial class GetPromoterTypes : BaseRequest, IReturn { public virtual string promoterTypeId { get; set; } } public partial class GetPromoterTypesResponse { public GetPromoterTypesResponse() { promoterTypes = new List{}; } public virtual List promoterTypes { get; set; } } public partial class PromoterType { public virtual string promoterTypeId { get; set; } public virtual string description { get; set; } } }