/* Options: Date: 2026-05-19 10:45:10 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.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: ImportRequest.* //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 Richemont.Booster2.PublicApi.NightlyProcess.ServiceModel; namespace Richemont.Booster2.PublicApi.NightlyProcess.ServiceModel { [Route("/tasks/{brand}/importrequest", "POST")] public partial class ImportRequest : IReturn { /// ///Brand Trigram, e.g. CAR, IWC /// [ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)] public virtual string brand { get; set; } /// ///Public key of the file in cloud server /// [ApiMember(Description="Public key of the file in cloud server", IsRequired=true)] public virtual string externalFileId { get; set; } /// ///Type of import e.g. 'SelloutAndCustomer', 'Sellout' /// [ApiMember(Description="Type of import e.g. 'SelloutAndCustomer', 'Sellout'", IsRequired=true)] public virtual string type { get; set; } /// ///B2 document reference to link the file with the Salesforce record /// [ApiMember(Description="B2 document reference to link the file with the Salesforce record")] public virtual string downloadRequestId { get; set; } } public partial class ImportRequestResponse { /// ///Unique Identifier of the Import Sell-Out and Customer request created /// [ApiMember(Description="Unique Identifier of the Import Sell-Out and Customer request created", IsRequired=true)] public virtual Guid asyncTaskId { get; set; } } }