(* Options: Date: 2026-04-04 06:47:12 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: GetTimezones.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPI.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DataListItemModel() = /// ///Guid of the list item PKID. /// [] member val ListItemId:Guid = new Guid() with get,set /// ///Name of the list item. /// [] member val Name:String = null with get,set /// ///Short Version Name of the list item. /// [] member val ShortName:String = null with get,set /// ///The primary image url /// [] member val PrimaryImagePath:String = null with get,set /// ///Record Status of the List Item (A=Active, I=Inactive, D=Deleted). /// [] member val RecordStatus:String = null with get,set /// ///The order (if any) of this item in the list. /// [] member val Order:Int32 = new Int32() with get,set /// ///The owner of this item. /// [] member val OwnerContactId:Guid = new Guid() with get,set member val ExtraValues:ResizeArray = null with get,set [] type DataListModel() = /// ///Guid of the List PKID. /// [] member val ListId:Guid = new Guid() with get,set /// ///Name of the list. /// [] member val Name:String = null with get,set /// ///The owner of this item. /// [] member val OwnerContactId:Guid = new Guid() with get,set /// ///List Items in the list. /// [", Description="List Items in the list.", Name="ListItems", ParameterType="query")>] member val DataListItems:ResizeArray = 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 GetTimezonesResponse() = member val Timezones:DataListModel = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get a list of timezones /// [] [] [] type GetTimezones() = interface IReturn