' Options: 'Date: 2024-05-17 03:08:43 '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: GetGuestPassTypesRequest.* '''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.Core.ClubAccess.GuestPasses.Dtos Imports ClubReady.Web.Api.ClubAccess.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 ApiResponseBase Public Overridable Property Success As Boolean Public Overridable Property Message As String End Class Public Partial Class GetGuestPassTypesRequestDto Inherits ApiDtoBase End Class Public Partial Class GetGuestPassTypesResponseDto Inherits ApiResponseBase Public Sub New() GuestPassTypes = New List(Of GuestPassTypeDto) End Sub Public Overridable Property GuestPassTypes As List(Of GuestPassTypeDto) End Class End Namespace Namespace ClubReady.Core.ClubAccess.GuestPasses.Dtos Public Partial Class GuestPassTypeDto Public Overridable Property GuestPassTypeId As Integer Public Overridable Property ChainId As Nullable(Of Integer) Public Overridable Property StoreId As Nullable(Of Integer) Public Overridable Property PassName As String Public Overridable Property DurationDays As Integer Public Overridable Property ExpirationEditable As Boolean Public Overridable Property MaxDurationDays As Integer Public Overridable Property AutoActivateWhenIssued As Boolean Public Overridable Property IssueBarcodeWhenActivated As Boolean Public Overridable Property TagWhenActivated As String Public Overridable Property MaxIssuedCount As Integer Public Overridable Property IsDeleted As Boolean Public Overridable Property InactiveCount As Integer Public Overridable Property ActiveCount As Integer Public Overridable Property ExpiredCount As Integer Public Overridable Property TotalCount As 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.ClubAccess.Model Public Partial Class GetGuestPassTypesRequest Inherits GetGuestPassTypesRequestDto Implements IReturn(Of GetGuestPassTypesResponse) Implements IRestrictedApiRequest ''' '''Api Key - grants access to resources ''' Public Overridable Property ApiKey As String ''' '''Either StoreId or ChainId is required ''' Public Overridable Property StoreId As Nullable(Of Integer) ''' '''Either StoreId or ChainId is required ''' Public Overridable Property ChainId As Nullable(Of Integer) Public Overridable Property RestrictedId As Nullable(Of Integer) Public Overridable Property RestrictedResourceType As RestrictedResourceType End Class Public Partial Class GetGuestPassTypesResponse Inherits GetGuestPassTypesResponseDto Public Sub New() GuestPassTypes = New List(Of GuestPassTypeDto) End Sub Public Overridable Property GuestPassTypes As List(Of GuestPassTypeDto) End Class End Namespace End Namespace