(* Options: Date: 2024-11-24 15:00:32 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: UserVisitHistoryRequest.* //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 UserVisitHistoryRequestDto() = inherit ApiDtoBase() member val UserId:Int32 = new Int32() with get,set member val FromDate:DateTime = new DateTime() with get,set member val ToDate:DateTime = new DateTime() with get,set /// ///Gets user check-in history based on a date range. Max 31 days. /// [] [] [] type UserVisitHistoryRequest() = inherit UserVisitHistoryRequestDto() /// ///Api Key - grants access to resources /// [] member val ApiKey:String = null with get,set /// /// /// [] member val UserId:Int32 = new Int32() with get,set /// ///StoreId OR ChainId is required /// [] member val StoreId:Nullable = new Nullable() with get,set /// ///StoreId OR ChainId is required /// [] member val ChainId:Nullable = new Nullable() with get,set /// ///(Format:YYYY-MM-DD) /// [] member val FromDate:DateTime = new DateTime() with get,set /// ///Max 31 Days (Format:YYYY-MM-DD) /// [] member val ToDate:DateTime = new DateTime() with get,set member val RestrictedId:Nullable = new Nullable() with get,set member val RestrictedResourceType:RestrictedResourceType = new RestrictedResourceType() with get,set