/* Options: Date: 2026-05-19 09:54:25 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: CreateEquipmentWarranty.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/warranty/equipment", "POST") public class CreateEquipmentWarranty : IReturn, Codable { public typealias Return = CreateEquipmentWarrantyResponse /** * Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided */ // @ApiMember(Description="Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided") public var brand:String /** * Richemont POS code */ // @ApiMember(Description="Richemont POS code", IsRequired=true) public var posCode:String /** * Equipment */ // @ApiMember(Description="Equipment", IsRequired=true) public var equipment:String /** * Warranty type */ // @ApiMember(Description="Warranty type", IsRequired=true) public var warrantyType:String /** * 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 var warrantyStartDate:Date required public init(){} } public class CreateEquipmentWarrantyResponse : Codable { /** * Equipment number */ // @ApiMember(Description="Equipment number", IsRequired=true) public var equipment:String /** * Warranty type */ // @ApiMember(Description="Warranty type", IsRequired=true) public var warrantyType:String /** * Master warranty */ // @ApiMember(Description="Master warranty", IsRequired=true) public var masterWarranty:String /** * Warranty start date */ // @ApiMember(Description="Warranty start date", IsRequired=true) public var warrantyStartDate:String /** * Warranty end date */ // @ApiMember(Description="Warranty end date") public var warrantyEndDate:String /** * Warranty creation date */ // @ApiMember(Description="Warranty creation date", IsRequired=true) public var warrantyCreationDate:String /** * Warranty creation time */ // @ApiMember(Description="Warranty creation time", IsRequired=true) public var warrantyCreationTime:String /** * Object number (ERP) */ // @ApiMember(Description="Object number (ERP)", IsRequired=true) public var objectNumber:String required public init(){} }