/* Options: Date: 2026-04-04 06:46:33 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: GetTimezones.* //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.WebAPI.ServiceModel; using Eros.Subtle.Canvara.WebAPIModel.ServiceModel; namespace Eros.Saguna.Common.WebAPI.ServiceModel { public partial class DataListItemModel { /// ///Guid of the list item PKID. /// [ApiMember(DataType="Guid", Description="Guid of the list item PKID.", IsRequired=true, Name="ListItemId", ParameterType="query")] public virtual Guid ListItemId { get; set; } /// ///Name of the list item. /// [ApiMember(DataType="string", Description="Name of the list item.", Name="Name", ParameterType="query")] public virtual string Name { get; set; } /// ///Short Version Name of the list item. /// [ApiMember(DataType="string", Description="Short Version Name of the list item.", Name="ShortName", ParameterType="query")] public virtual string ShortName { get; set; } /// ///The primary image url /// [ApiMember(DataType="string", Description="The primary image url", Name="PrimaryImagePath", ParameterType="query")] public virtual string PrimaryImagePath { get; set; } /// ///Record Status of the List Item (A=Active, I=Inactive, D=Deleted). /// [ApiMember(DataType="string", Description="Record Status of the List Item (A=Active, I=Inactive, D=Deleted).", Name="RecordStatus", ParameterType="query")] public virtual string RecordStatus { get; set; } /// ///The order (if any) of this item in the list. /// [ApiMember(DataType="int", Description="The order (if any) of this item in the list.", Name="Order", ParameterType="query")] public virtual int Order { get; set; } /// ///The owner of this item. /// [ApiMember(DataType="Guid", Description="The owner of this item.", Name="OwnerContactId", ParameterType="query")] public virtual Guid OwnerContactId { get; set; } public virtual List ExtraValues { get; set; } } public partial class DataListModel { /// ///Guid of the List PKID. /// [ApiMember(DataType="Guid", Description="Guid of the List PKID.", IsRequired=true, Name="ListId", ParameterType="query")] public virtual Guid ListId { get; set; } /// ///Name of the list. /// [ApiMember(DataType="String", Description="Name of the list.", Name="Name", ParameterType="query")] public virtual string Name { get; set; } /// ///The owner of this item. /// [ApiMember(DataType="Guid", Description="The owner of this item.", Name="OwnerContactId", ParameterType="query")] public virtual Guid OwnerContactId { get; set; } /// ///List Items in the list. /// [ApiMember(DataType="List", Description="List Items in the list.", Name="ListItems", ParameterType="query")] public virtual List DataListItems { get; set; } } } namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Get a list of timezones /// [Route("/timezones")] [Api(Description="Get a list of timezones")] public partial class GetTimezones : IReturn { } [ApiResponse(Description="List of timezones matching the criteria")] public partial class GetTimezonesResponse { public virtual DataListModel Timezones { 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; } } }