' Options: 'Date: 2025-08-03 08:41:03 'Version: 6.50 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://www.clubready.com/api ' '''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: CreateClassScheduleRequest.* '''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 Imports ClubReady.Core.Api.Models Imports ClubReady.Web.Api.Scheduling.Model Namespace Global Namespace ClubReady.Core.Api Public Partial Class ApiDtoBase Implements IApiDtoBase 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 Interface IApiDtoBase Property ApiKey As String Property StoreId As Nullable(Of Integer) Property ChainId As Nullable(Of Integer) End Interface End Namespace Namespace ClubReady.Core.Api.Models Public Partial Class ApiResponseBase Public Overridable Property Success As Boolean Public Overridable Property Message As String End Class Public Partial Class CreateClassScheduleRequestDto Inherits ApiDtoBase Public Overridable Property ClassId As Integer Public Overridable Property ClassDateTime As Date Public Overridable Property TrainerId As Nullable(Of Integer) Public Overridable Property AlternateClassName As String End Class Public Partial Class CreateClassScheduleResponseDto Inherits ApiResponseBase Public Overridable Property ClassScheduleId As Nullable(Of Integer) 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.Scheduling.Model Public Partial Class CreateClassScheduleRequest Inherits CreateClassScheduleRequestDto Implements IReturn(Of CreateClassScheduleResponse) Implements IRestrictedApiRequest ''' '''IP address of the end user ''' Public Overridable Property XForwardedFor As String ''' '''Api Key - grants access to resources ''' Public Overridable Property ApiKey As String ''' '''Store ID ''' Public Overridable Property StoreId As Nullable(Of Integer) ''' '''Class ID ''' Public Overridable Property ClassId As Integer ''' '''Date and Time for Class ''' Public Overridable Property ClassDateTime As Date ''' '''Trainer ID ''' Public Overridable Property TrainerId As Nullable(Of Integer) ''' '''Alternate Class Name ''' Public Overridable Property AlternateClassName As String Public Overridable Property RestrictedId As Nullable(Of Integer) Public Overridable Property RestrictedResourceType As RestrictedResourceType End Class Public Partial Class CreateClassScheduleResponse Inherits CreateClassScheduleResponseDto Public Overridable Property Success As Boolean Public Overridable Property ClassScheduleId As Nullable(Of Integer) Public Overridable Property Message As String End Class End Namespace End Namespace