/* Options: Date: 2026-09-09 10:57:56 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://services.acct.2service.nl //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetModelCodeDocument.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using _2Service.Webservices.ServiceModel.Dealers; namespace _2Service.Webservices.ServiceModel.Dealers { [Route("/dealers/modelcode/document/{DocumentId}/{Key}", "GET")] public partial class GetModelCodeDocument : IReturn { /// ///Document id to retrieve bytes for. /// [ApiMember(Description="Document id to retrieve bytes for.", IsRequired=true, ParameterType="path")] public virtual int DocumentId { get; set; } /// ///Key of document to retrieve /// [ApiMember(Description="Key of document to retrieve", IsRequired=true, ParameterType="path")] public virtual string Key { get; set; } } }