(* Options: Date: 2026-06-13 13:30:22 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetEventSourcePerspectiveRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Nephila.RiskStore.ServiceModel.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type EventSourcePerspective() = member val EventSourceId:Int32 = new Int32() with get,set member val EventSourceSystem:String = null with get,set member val EventSourceVersion:String = null with get,set member val PerspectiveId:Int32 = new Int32() with get,set member val PerspectiveName:String = null with get,set member val IsActive:Boolean = new Boolean() with get,set [] type GetEventSourcePerspectiveResponse() = member val EventSourcePerspectives:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GetEventSourcePerspectiveRequest() = interface IReturn interface IGet /// ///Flag to indicate if to return only active perspectives (false) or all (true) /// [] member val IncludeInactive:Boolean = new Boolean() with get,set