/* Options: Date: 2024-12-15 20:43:32 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: ResetEventStreamRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/events/reset/stream", "POST") public class ResetEventStreamRequest : PostOperationUnTenanted, IReturn { public typealias Return = EmptyResponse public var streamName:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case streamName } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) streamName = try container.decodeIfPresent(String.self, forKey: .streamName) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if streamName != nil { try container.encode(streamName, forKey: .streamName) } } } public class PostOperationUnTenanted : IPost, Codable { required public init(){} }