/* Options: Date: 2026-04-04 08:46:15 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTimezones.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Get a list of timezones */ @Route(Path="/timezones") @Api(Description="Get a list of timezones") open class GetTimezones : IReturn { companion object { private val responseType = GetTimezonesResponse::class.java } override fun getResponseType(): Any? = GetTimezones.responseType } @ApiResponse(Description="List of timezones matching the criteria") open class GetTimezonesResponse { open var Timezones:DataListModel? = null open var ResponseStatus:ResponseStatus? = null } open class DataListModel { /** * Guid of the List PKID. */ @ApiMember(DataType="Guid", Description="Guid of the List PKID.", IsRequired=true, Name="ListId", ParameterType="query") open var ListId:UUID? = null /** * Name of the list. */ @ApiMember(DataType="String", Description="Name of the list.", Name="Name", ParameterType="query") open var Name:String? = null /** * The owner of this item. */ @ApiMember(DataType="Guid", Description="The owner of this item.", Name="OwnerContactId", ParameterType="query") open var OwnerContactId:UUID? = null /** * List Items in the list. */ @ApiMember(DataType="List", Description="List Items in the list.", Name="ListItems", ParameterType="query") open var DataListItems:ArrayList? = null } open class DataListItemModel { /** * Guid of the list item PKID. */ @ApiMember(DataType="Guid", Description="Guid of the list item PKID.", IsRequired=true, Name="ListItemId", ParameterType="query") open var ListItemId:UUID? = null /** * Name of the list item. */ @ApiMember(DataType="string", Description="Name of the list item.", Name="Name", ParameterType="query") open var Name:String? = null /** * Short Version Name of the list item. */ @ApiMember(DataType="string", Description="Short Version Name of the list item.", Name="ShortName", ParameterType="query") open var ShortName:String? = null /** * The primary image url */ @ApiMember(DataType="string", Description="The primary image url", Name="PrimaryImagePath", ParameterType="query") open var PrimaryImagePath:String? = null /** * 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") open var RecordStatus:String? = null /** * 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") open var Order:Int? = null /** * The owner of this item. */ @ApiMember(DataType="Guid", Description="The owner of this item.", Name="OwnerContactId", ParameterType="query") open var OwnerContactId:UUID? = null open var ExtraValues:ArrayList? = null }