/* Options: Date: 2026-05-19 10:56:00 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: UpdateEquipmentWarranty.* //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.Sellout.ServiceModel; namespace Richemont.Booster2.PublicApi.Sellout.ServiceModel { [Route("/warranty/equipment", "PATCH")] public partial class UpdateEquipmentWarranty : IReturn { /// ///Brand Trigram, e.g. CAR, IWC /// [ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)] public virtual string brand { get; set; } /// ///POS code, e.g. 102048 /// [ApiMember(Description="POS code, e.g. 102048", IsRequired=true)] public virtual string posCode { get; set; } /// ///Equipment number, e.g. 1234567890 /// [ApiMember(Description="Equipment number, e.g. 1234567890", IsRequired=true)] public virtual string equipmentNumber { get; set; } /// ///Warranty type, e.g. 3 /// [ApiMember(Description="Warranty type, e.g. 3", IsRequired=true)] public virtual string warrantyType { get; set; } /// ///Date of the warranty start date e.g. 2025-06-01 /// [ApiMember(Description="Date of the warranty start date e.g. 2025-06-01", IsRequired=true)] public virtual DateTime warrantyStartDate { get; set; } } public partial class UpdateEquipmentWarrantyResponse { /// ///Equipment number /// [ApiMember(Description="Equipment number", IsRequired=true)] public virtual string equipment { get; set; } /// ///Warranty type /// [ApiMember(Description="Warranty type", IsRequired=true)] public virtual string warrantyType { get; set; } /// ///Master warranty /// [ApiMember(Description="Master warranty", IsRequired=true)] public virtual string masterWarranty { get; set; } /// ///Warranty start date /// [ApiMember(Description="Warranty start date", IsRequired=true)] public virtual string warrantyStartDate { get; set; } /// ///Warranty end date /// [ApiMember(Description="Warranty end date")] public virtual string warrantyEndDate { get; set; } /// ///Warranty creation date /// [ApiMember(Description="Warranty creation date", IsRequired=true)] public virtual string warrantyCreationDate { get; set; } /// ///Warranty creation time /// [ApiMember(Description="Warranty creation time", IsRequired=true)] public virtual string warrantyCreationTime { get; set; } /// ///Object number (ERP) /// [ApiMember(Description="Object number (ERP)", IsRequired=true)] public virtual string objectNumber { get; set; } /// ///Sales Force Sellout ID /// [ApiMember(Description="Sales Force Sellout ID", IsRequired=true)] public virtual string sfSelloutId { get; set; } } }