(* Options: Date: 2024-05-14 12:32:52 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UsersListRequest.* //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 UsersListRequestDto() = inherit ApiDtoBase() member val Segment:String = null with get,set member val ActivityDate:String = null with get,set member val ActivityOperator:String = null with get,set [] [] type UsersListRequest() = inherit UsersListRequestDto() /// ///Api Key - grants access to resources /// [] member val ApiKey:String = null 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 /// ///Date to use for filter /// [] member val ActivityDate:String = null with get,set /// ///The operator to use when comparing ActivityDate. Options are GT,EQ and LT for Greater Than, Equal and Less Than. Defaults to GT if not provided. /// [] member val ActivityOperator:String = null with get,set /// ///Filter by a specific segment. Types: Prospects, Active, Inactive, All, PastDue /// [] member val Segment:String = null with get,set member val RestrictedId:Nullable = new Nullable() with get,set member val RestrictedResourceType:RestrictedResourceType = new RestrictedResourceType() with get,set /// ///Version 2 adds email and mobile phone to output /// [] member val Version:Nullable = new Nullable() with get,set