(* 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: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ArticleImageRequest.* //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 ArticleImageResponse() = member val imageUrl:String = null with get,set [] [] type ArticleImageRequest() = inherit BaseRequest() interface IReturn member val referenceId:String = null with get,set member val format:String = null with get,set