(* Options: Date: 2026-04-04 08:36:44 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: GetDimensionValuesList.* //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 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 GetDimensionValuesListResponse() = /// ///List of dimensionValues. /// [", Description="List of dimensionValues.", Name="DimensionValues", ParameterType="query")>] member val DimensionValues:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get a list of dimensionValues for a specified dimension /// [] [] [] type GetDimensionValuesList() = interface IReturn /// ///Licensee Id to retrieve dimensionValues for. /// [] member val LicenseeId:Guid = new Guid() with get,set /// ///Dimension Id to retrieve dimensionValues for. /// [] member val DimensionId:Guid = new Guid() with get,set /// ///RecordStatus of dimensionValues to retrieve. If not set 'A' active dimensionValues are retrieved. /// [] member val RecordStatus:String = null with get,set