(* Options: Date: 2024-09-20 23:18:06 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://clubready.com/api/current //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetClassScheduleRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ClubReady.Core.Api.Models open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type RestrictedResourceType = | Store = 0 | Chain = 1 | User = 2 | Undefined = 3 [] type IRestrictedApiRequest = abstract RestrictedId:Nullable with get,set abstract RestrictedResourceType:RestrictedResourceType with get,set [] type IApiKeyEndpoint = abstract ApiKey:String with get,set [] type ApiDtoBase() = member val ApiKey:String = null with get,set member val StoreId:Nullable = new Nullable() with get,set member val ChainId:Nullable = new Nullable() with get,set [] type GetClassScheduleRequestDto() = inherit ApiDtoBase() member val FromDate:Nullable = new Nullable() with get,set member val ToDate:Nullable = new Nullable() with get,set member val FilterByCategoryId:Nullable = new Nullable() with get,set /// ///Get a list of classes for a locations. Specify ToDate / FromDate (max 7 days) to get a list of classes within a date range. Omitting dates will retrieve classes for today. /// [] [] [] [] type GetClassScheduleRequest() = inherit GetClassScheduleRequestDto() /// ///Api Key - grants access to resources /// [] member val ApiKey:String = null with get,set /// ///StoreID /// [] member val StoreId:Nullable = new Nullable() with get,set /// ///From Date (if blank, defaults to today; format: YYYY-MM-DD) /// [] member val FromDate:Nullable = new Nullable() with get,set /// ///To Date (max 7 days; format: YYYY-MM-DD) /// [] member val ToDate:Nullable = new Nullable() with get,set /// ///Id of Category Names to filter results by /// [] member val FilterByCategoryId:Nullable = new Nullable() with get,set member val RestrictedId:Nullable = new Nullable() with get,set member val RestrictedResourceType:RestrictedResourceType = new RestrictedResourceType() with get,set