/* Options: Date: 2025-12-13 05:11:46 SwiftVersion: 5.0 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ShadowPricesNyIsoFilesRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/shadow-price/ny-iso/files", "POST") public class ShadowPricesNyIsoFilesRequest : Codable { public var start:Date public var end:Date public var marketType:PriceMarketType public var relationType:CongestionRelationType required public init(){} } public enum PriceMarketType : Int, Codable { case Undefined = 0 case Realtime = 1 case DayAhead = 10 case DART = 101 } public enum CongestionRelationType : String, Codable { case Undefined case InterfaceLimitsFlows case ParFlows case ShadowPriceDayahead case ShadowPriceRealtime }