/* Options: Date: 2024-12-15 19:47:26 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ResetPasswordResetRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/users/passwords/reset", "POST") public class ResetPasswordResetRequest : PostOperationUnTenanted, IReturn { public typealias Return = ResetPasswordResetResponse public var token:String? public var password:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case token case password } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) token = try container.decodeIfPresent(String.self, forKey: .token) password = try container.decodeIfPresent(String.self, forKey: .password) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if token != nil { try container.encode(token, forKey: .token) } if password != nil { try container.encode(password, forKey: .password) } } } public class ResetPasswordResetResponse : Codable { public var responseStatus:ResponseStatus? required public init(){} } public class PostOperationUnTenanted : IPost, Codable { required public init(){} }