' Options: 'Date: 2024-05-14 17:32:50 'Version: 6.50 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://www.clubready.com/api/current ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: CreateProspectRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports ClubReady.Web.Api Imports ClubReady.Core.Api.Models Imports ClubReady.Web.Api.Members.Model Namespace Global Namespace ClubReady.Core.Api.Models Public Partial Class ApiDtoBase Public Overridable Property ApiKey As String Public Overridable Property StoreId As Nullable(Of Integer) Public Overridable Property ChainId As Nullable(Of Integer) End Class Public Partial Class CreateProspectRequestDto Inherits ApiDtoBase Public Overridable Property FirstName As String Public Overridable Property LastName As String Public Overridable Property Address As String Public Overridable Property City As String Public Overridable Property State As String Public Overridable Property Zip As String Public Overridable Property Email As String Public Overridable Property Gender As String Public Overridable Property AddPackageId As Nullable(Of Integer) Public Overridable Property ProspectTypeId As Nullable(Of Integer) Public Overridable Property ReferralTypeId As Nullable(Of Integer) Public Overridable Property SendEmail As Boolean Public Overridable Property Phone As String Public Overridable Property WorkPhone As String Public Overridable Property DateOfBirth As Nullable(Of Date) Public Overridable Property CellPhone As String Public Overridable Property Coupon As String Public Overridable Property Note As String Public Overridable Property EmailTemplateId As Nullable(Of Integer) Public Overridable Property ExternalId As String Public Overridable Property ReferredBy As Nullable(Of Integer) Public Overridable Property AssignToId As Nullable(Of Integer) Public Overridable Property AssignToMethod As Integer Public Overridable Property ContactedHow As Nullable(Of Integer) Public Overridable Property Username As String Public Overridable Property EmergencyContactName As String Public Overridable Property EmergencyContactPhone As String Public Overridable Property EmergencyContactType As String Public Overridable Property EmailOptOut As Boolean End Class End Namespace Namespace ClubReady.Web.Api Public Interface IApiKeyEndpoint Property ApiKey As String End Interface Public Interface IRestrictedApiRequest Implements IApiKeyEndpoint Property RestrictedId As Nullable(Of Integer) Property RestrictedResourceType As RestrictedResourceType End Interface Public Enum RestrictedResourceType Store Chain User Undefined End Enum End Namespace Namespace ClubReady.Web.Api.Members.Model Public Partial Class CreateProspectRequest Inherits CreateProspectRequestDto Implements IRestrictedApiRequest ''' '''Api Key - grants access to resources ''' Public Overridable Property ApiKey As String ''' '''ClubReady Club ID (StoreID internally) ''' Public Overridable Property StoreId As Nullable(Of Integer) ''' '''First Name ''' Public Overridable Property FirstName As String ''' '''Last Name ''' Public Overridable Property LastName As String ''' '''Email Address ''' Public Overridable Property Email As String ''' '''Gender (Format:'M'|'F') ''' Public Overridable Property Gender As String ''' '''Address ''' Public Overridable Property Address As String ''' '''City ''' Public Overridable Property City As String Public Overridable Property State As String Public Overridable Property Zip As String ''' '''Home phone ''' Public Overridable Property Phone As String ''' '''Work phone ''' Public Overridable Property WorkPhone As String ''' '''Date of Birth (Format:YYYY-MM-DD) ''' Public Overridable Property DateOfBirth As Nullable(Of Date) ''' '''Cell phone ''' Public Overridable Property CellPhone As String ''' '''Specify a Package to apply to the new prospect ''' Public Overridable Property AddPackageId As Nullable(Of Integer) ''' '''Specify a specific Prospect Type for the new prospect ''' Public Overridable Property ProspectTypeId As Nullable(Of Integer) ''' '''Specify a specific Referral Type for the new prospect ''' Public Overridable Property ReferralTypeId As Nullable(Of Integer) ''' '''Send a Welcome email to the new prospect (Format:true|false) ''' Public Overridable Property SendEmail As Boolean ''' '''Only used if SendEmail = True ''' Public Overridable Property EmailTemplateId As Nullable(Of Integer) ''' ''' ''' Public Overridable Property Coupon As String ''' '''Add an internal note for the new prospect ''' Public Overridable Property Note As String ''' '''Unique ID for the user from your system. We store internally as ExternalUserId ''' Public Overridable Property ExternalId As String ''' '''User ID of existing user who referred them. ''' Public Overridable Property ReferredBy As Nullable(Of Integer) ''' '''ClubReady UserId of staff to assign new member to. ''' Public Overridable Property AssignToId As Nullable(Of Integer) ''' '''Who should be assigned to this lead? 0 = Default lead assignments, 1 = When passing in a ReferredBy user, assign the new Lead to that referring user's Staff assignment. ''' Public Overridable Property AssignToMethod As Integer ''' '''Username needs to be between 4 and 255 characters ''' Public Overridable Property Username As String ''' '''Emergency contact name ''' Public Overridable Property EmergencyContactName As String ''' '''Emergency contact phone number ''' Public Overridable Property EmergencyContactPhone As String ''' '''Emergency contact relationship ''' Public Overridable Property EmergencyContactType As String ''' '''Set a prospect's email opt out status (Format:true|false) ''' Public Overridable Property EmailOptOut As Boolean Public Overridable Property RestrictedId As Nullable(Of Integer) Public Overridable Property RestrictedResourceType As RestrictedResourceType End Class End Namespace End Namespace