/* Options: Date: 2026-02-04 04:38:52 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/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: GetDimensions.* //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.Subtle.Canvara.WebAPIModel.ServiceModelSubscription; namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModelSubscription { [Route("/informationondimensions")] public partial class GetDimensions : IReturn { /// ///Id of the licensee to retrieve their dimensions and values for. /// [ApiMember(DataType="Guid", Description="Id of the licensee to retrieve their dimensions and values for.", Name="LicenseeId", ParameterType="body")] public virtual Guid LicenseeId { get; set; } /// ///Record Status of dimensions and values to be retrieved.. /// [ApiMember(DataType="string", Description="Record Status of dimensions and values to be retrieved..", Name="RecordStatus", ParameterType="body")] public virtual string RecordStatus { get; set; } } public partial class GetDimensionsResponse { /// ///XML string containing all the Dimensions and Values for a licensee. /// [ApiMember(DataType="string", Description="XML string containing all the Dimensions and Values for a licensee.", Name="DimensionsXml", ParameterType="body")] public virtual string DimensionsXml { get; set; } } }