/* Options: Date: 2025-12-10 20:15:32 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.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: GetFile.* //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 WebService.ServiceModel.ResourceModels; namespace WebService.ServiceModel.ResourceModels { [Route("/file", "GET")] [Route("/file/{id}", "GET")] public partial class GetFile { [ApiMember(DataType="int", IsRequired=true)] public virtual int Id { get; set; } /// ///Request a file by it's filename. /// [ApiMember(Description="Request a file by it's filename.")] public virtual string FileName { get; set; } /// ///Changes how the file is send by the server. Set to true to try and open the file in a browser without downloading. /// [ApiMember(Description="Changes how the file is send by the server. Set to true to try and open the file in a browser without downloading.")] public virtual bool Stream { get; set; } } }