/* Options: Date: 2026-04-04 04:53:10 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetDimensionValuesList.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Eros.Saguna.Common.WebAPIModel.Models; using Eros.Subtle.Canvara.WebAPIModel.ServiceModel; namespace Eros.Saguna.Common.WebAPIModel.Models { public partial class DimensionValueModel { /// ///Id of the dimension value. /// [ApiMember(DataType="Guid", Description="Id of the dimension value.", Name="DimensionValueId", ParameterType="body")] public virtual Guid DimensionValueId { get; set; } /// ///Dimension Id this value is for. /// [ApiMember(Description="Dimension Id this value is for.", ParameterType="body")] public virtual Guid DimensionId { get; set; } /// ///Name of the dimension value. /// [ApiMember(Description="Name of the dimension value.", ParameterType="body")] public virtual string Name { get; set; } /// ///Description of the dimension value. /// [ApiMember(Description="Description of the dimension value.", ParameterType="body")] public virtual string Description { get; set; } /// ///Short Name for the dimension value. /// [ApiMember(Description="Short Name for the dimension value.", ParameterType="body")] public virtual string ShortName { get; set; } /// ///Id of the colour associated. /// [ApiMember(Description="Id of the colour associated.", ParameterType="body")] public virtual Guid TrafficLightId { get; set; } /// ///Colour associated with the dimension value. /// [ApiMember(Description="Colour associated with the dimension value.", ParameterType="body")] public virtual string TrafficLightColour { get; set; } /// ///Id that links this dimension value to an object. /// [ApiMember(Description="Id that links this dimension value to an object.", ParameterType="body")] public virtual Guid ObjectConnectionId { get; set; } /// ///Owner Id of the dimension value. /// [ApiMember(Description="Owner Id of the dimension value.", ParameterType="body")] public virtual Guid OwnerContactId { get; set; } /// ///Record status of the dimension value. /// [ApiMember(Description="Record status of the dimension value.", ParameterType="body")] public virtual string RecordStatus { get; set; } } } namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Get a list of dimensionValues for a specified dimension /// [Route("/dimensionvalues/{DimensionId}")] [Api(Description="Get a list of dimensionValues for a specified dimension")] public partial class GetDimensionValuesList : IReturn { /// ///Licensee Id to retrieve dimensionValues for. /// [ApiMember(DataType="Guid", Description="Licensee Id to retrieve dimensionValues for.", Name="LicenseeId", ParameterType="query")] public virtual Guid LicenseeId { get; set; } /// ///Dimension Id to retrieve dimensionValues for. /// [ApiMember(DataType="Guid", Description="Dimension Id to retrieve dimensionValues for.", Name="DimensionId", ParameterType="query")] public virtual Guid DimensionId { get; set; } /// ///RecordStatus of dimensionValues to retrieve. If not set 'A' active dimensionValues are retrieved. /// [ApiMember(DataType="string", Description="RecordStatus of dimensionValues to retrieve. If not set 'A' active dimensionValues are retrieved.", Name="RecordStatus", ParameterType="query")] public virtual string RecordStatus { get; set; } } [ApiResponse(Description="A list of dimension values")] public partial class GetDimensionValuesListResponse { /// ///List of dimensionValues. /// [ApiMember(DataType="List", Description="List of dimensionValues.", Name="DimensionValues", ParameterType="query")] public virtual List DimensionValues { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } } namespace ServiceStack { [DataContract] public partial class ResponseStatus : IMeta { [DataMember(Order=1)] public virtual string ErrorCode { get; set; } [DataMember(Order=2)] public virtual string Message { get; set; } [DataMember(Order=3)] public virtual string StackTrace { get; set; } [DataMember(Order=4)] public virtual List Errors { get; set; } [DataMember(Order=5)] public virtual Dictionary Meta { get; set; } } }