/* Options: Date: 2026-06-13 13:18:10 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetEventSourcePerspectiveRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/riskstore/eventsource-perspective", "GET") public class GetEventSourcePerspectiveRequest : IReturn, IGet, Codable { public typealias Return = GetEventSourcePerspectiveResponse /** * Flag to indicate if to return only active perspectives (false) or all (true) */ // @ApiMember(DataType="boolean", Description="Flag to indicate if to return only active perspectives (false) or all (true)", IsRequired=true) public var includeInactive:Bool? required public init(){} } public class GetEventSourcePerspectiveResponse : Codable { public var eventSourcePerspectives:[EventSourcePerspective]? public var responseStatus:ResponseStatus? required public init(){} } public class EventSourcePerspective : Codable { public var eventSourceId:Int? public var eventSourceSystem:String? public var eventSourceVersion:String? public var perspectiveId:Int? public var perspectiveName:String? public var isActive:Bool? required public init(){} }