/* Options: Date: 2026-06-22 20:31:51 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PortalPaymentIntentRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/portal/{Token}/payment-intent", "POST,OPTIONS") public class PortalPaymentIntentRequest : IReturn, Codable { public typealias Return = PortalPaymentIntentResponse public var token:String? required public init(){} } public class PortalPaymentIntentResponse : Codable { public var responseStatus:ResponseStatus? public var success:Bool? public var clientSecret:String? public var amountDue:Double? public var message:String? required public init(){} }