(* Options: Date: 2026-06-14 21:39:09 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetBrandPrivacyPolicy.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Booster.Microservices.ServiceModel.Common open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type BaseRequest() = member val sid:String = null with get,set member val app:String = null with get,set member val _os:String = null with get,set member val _appVersion:String = null with get,set member val _searchMethod:String = null with get,set [] type IRequest = abstract sid:String with get,set abstract app:String with get,set [] [] type GetBrandPrivacyPolicy() = inherit BaseRequest() interface IReturn member val countryId:String = null with get,set member val languageId:String = null with get,set member val brandTrigram:String = null with get,set member val posId:Nullable = new Nullable() with get,set