(* Options: Date: 2024-05-16 16:02:21 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: GetBillingStatusRequest.* //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 GetBillingStatusRequestDto() = inherit ApiDtoBase() member val MemberId:Int32 = new Int32() with get,set [] type MemberBillingStatusInvoice() = member val InvoiceId:Int32 = new Int32() with get,set member val Status:String = null with get,set member val StatusId:Int16 = new Int16() with get,set member val AmountDue:Decimal = new Decimal() with get,set member val SalesTaxDue:Decimal = new Decimal() with get,set member val PaymentDue:DateTime = new DateTime() with get,set member val PaymentMade:Nullable = new Nullable() with get,set member val PackageName:String = null with get,set [] [] type GetMemberBillingStatus_Result() = [] member val FullName:String = null with get,set [] member val MemberStatus:String = null with get,set [] member val HomeClub:String = null with get,set [] member val BalanceDue:Nullable = new Nullable() with get,set [] member val StoreID:Nullable = new Nullable() with get,set [] type MemberBillingStatus() = inherit GetMemberBillingStatus_Result() member val Invoices:ResizeArray = new ResizeArray() with get,set member val UserTypeId:Int32 = new Int32() with get,set member val UserTypeName:String = null with get,set member val NewUserId:Nullable = new Nullable() with get,set [] [] type GetBillingStatusRequest() = inherit GetBillingStatusRequestDto() interface IReturn /// ///Api Key - grants access to resources /// [] member val ApiKey:String = null with get,set /// ///Store ID # member belongs to /// [] member val StoreId:Nullable = new Nullable() with get,set /// ///ID of the member to lookup /// [] member val MemberId:Int32 = new Int32() with get,set member val RestrictedId:Nullable = new Nullable() with get,set member val RestrictedResourceType:RestrictedResourceType = new RestrictedResourceType() with get,set