(* Options: Date: 2026-04-04 03:05:00 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetDimensionsAndValues.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DimensionValueModel() = /// ///Id of the dimension value. /// [] member val DimensionValueId:Guid = new Guid() with get,set /// ///Dimension Id this value is for. /// [] member val DimensionId:Guid = new Guid() with get,set /// ///Name of the dimension value. /// [] member val Name:String = null with get,set /// ///Description of the dimension value. /// [] member val Description:String = null with get,set /// ///Short Name for the dimension value. /// [] member val ShortName:String = null with get,set /// ///Id of the colour associated. /// [] member val TrafficLightId:Guid = new Guid() with get,set /// ///Colour associated with the dimension value. /// [] member val TrafficLightColour:String = null with get,set /// ///Id that links this dimension value to an object. /// [] member val ObjectConnectionId:Guid = new Guid() with get,set /// ///Owner Id of the dimension value. /// [] member val OwnerContactId:Guid = new Guid() with get,set /// ///Record status of the dimension value. /// [] member val RecordStatus:String = null with get,set [] type DimensionModel() = /// ///Id of the Dimension itself. /// [] member val DimensionId:Guid = new Guid() with get,set /// ///Dimension name. /// [] member val Name:String = null with get,set /// ///Dimension description. /// [] member val Description:String = null with get,set /// ///Dimension shortened name. /// [] member val ShortName:String = null with get,set /// ///True if the values for the dimension should have colours associated with them. /// [] member val HasTrafficLightForValues:Boolean = new Boolean() with get,set /// /// /// [] member val HasImage:Boolean = new Boolean() with get,set /// ///Owner Id of the dimension. /// [] member val OwnerContactId:Guid = new Guid() with get,set /// ///Record status of the dimension. /// [] member val RecordStatus:String = null with get,set /// ///Dimension values for this dimension. /// [", Description="Dimension values for this dimension.", Name="DimensionValues")>] member val DimensionValues:ResizeArray = null with get,set /// ///Id that links this dimension to an object. /// [] member val ObjectConnectionId:Guid = new Guid() with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetDimensionsListResponse() = /// ///List of dimensions. /// [", Description="List of dimensions.", Name="Dimensions", ParameterType="query")>] member val Dimensions:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get a list of dimensions and their values (active) for a licensee, as well as any standard dimensions. /// [] [] [] type GetDimensionsAndValues() = interface IReturn /// ///Licensee Id to retrieve dimensions for. /// [] member val LicenseeId:Guid = new Guid() with get,set