/* Options:
Date: 2026-08-27 07:10:18
Version: 10.08
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: True
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: CancelOrder.*
//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 Richemont.Booster2.PublicApi.Purchase.ServiceModel;
namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel
{
[Route("/purchase/{brand}/cancel", "POST")]
public partial class CancelOrder
{
///
///SAP order id e.g. '217207773', '217207774', '217207775'
///
[ApiMember(Description="SAP order id e.g. '217207773', '217207774', '217207775'", IsRequired=true)]
public virtual int purchaseOrderId { get; set; }
///
///Global Pos Code for the intended Order e.g. ES100:102048
///
[ApiMember(Description="Global Pos Code for the intended Order e.g. ES100:102048", IsRequired=true)]
public virtual string posCode { get; set; }
///
///Brand Trigram of the intended Order, e.g. 'IWC', 'CAR', etc.
///
[ApiMember(Description="Brand Trigram of the intended Order, e.g. 'IWC', 'CAR', etc.", IsRequired=true)]
public virtual string brand { get; set; }
///
///Order line numbers
///
[ApiMember(Description="Order line numbers", IsRequired=true)]
public virtual List lineNumbers { get; set; } = [];
}
}