(* Options: Date: 2025-07-19 18:28:58 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: ContractTextEndpoint.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ClubReady.Core.Api 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 IApiDtoBase = abstract ApiKey:String with get,set abstract StoreId:Nullable with get,set abstract ChainId:Nullable with get,set [] type IRestrictedApiRequest = abstract RestrictedId:Nullable with get,set abstract RestrictedResourceType:RestrictedResourceType with get,set [] type IApiKeyEndpoint = abstract ApiKey:String with get,set [] type IContractTextEndpoint = abstract IncompleteAgreementToken:String with get,set [] type ApiResponse2Base() = member val success:Boolean = new Boolean() with get,set member val message:String = null with get,set [] type ContractTextResponse() = inherit ApiResponse2Base() member val contractHtml:String = null with get,set member val incompleteAgreementToken:String = null with get,set [] [, StatusCode=200)>] [] type ContractTextEndpoint() = interface IReturn /// ///IP address of the end user /// [] member val XForwardedFor:String = null with get,set /// ///Api Authentication Key /// [] member val ApiKey:String = null with get,set /// ///ID# of the store to get contract for. /// [] member val StoreId:Nullable = new Nullable() with get,set member val ChainId:Nullable = new Nullable() with get,set /// ///Token for Incomplete Agreement to get details for /// [] member val IncompleteAgreementToken:String = null with get,set member val RestrictedId:Nullable = new Nullable() with get,set member val RestrictedResourceType:RestrictedResourceType = new RestrictedResourceType() with get,set