(* Options: Date: 2025-12-11 18:29:22 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetImage.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CommonService.Media.Resize open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type SizeType = | Unknown = 0 | Full = 1 | Small = 2 | Medium = 3 | Large = 4 | XLarge = 5 [] [] [] type GetImage() = [] member val Id:Int32 = new Int32() with get,set /// ///Manually control the server resizing of the image. /// [] member val ImageSize:SizeType = new SizeType() with get,set /// ///Set to true to return the image in Base64 format. /// [] member val Base64:Boolean = new Boolean() with get,set /// ///Force this file to be returned as a thumbnail (small) /// [] member val Thumbnail:Boolean = new Boolean() with get,set