/* Options: Date: 2025-06-27 03:47:53 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: PaymentServices.PaymentCancelRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/payments/cancel", "GET POST") public class PaymentCancelRequest : IReturn, Codable { public typealias Return = PaymentCancelResponse public var paymentMethodId:String? public var paymentId:String? public var details:String? required public init(){} } public class PaymentCancelResponse : Codable { public var status:String? public var message:String? public var paymentMethodId:String? public var jsonResponse:String? required public init(){} }