' Options: 'Date: 2024-05-21 03:10:26 '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: CreateZipWhipMessageRequest.* '''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 ApiResponseBase Public Overridable Property Success As Boolean Public Overridable Property Message As String End Class Public Partial Class CreateZipWhipMessageRequestDto Inherits ApiDtoBase Public Overridable Property UserId As Integer Public Overridable Property Subject As String Public Overridable Property Text As String Public Overridable Property PostedBy As Nullable(Of Integer) End Class Public Partial Class CreateZipWhipMessageResponseDto Inherits ApiResponseBase Public Overridable Property NoteId As Long Public Overridable Property ContactLogId As Integer Public Overridable Property TaskId 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.Members.Model Public Partial Class CreateZipWhipMessageRequest Inherits CreateZipWhipMessageRequestDto Implements IReturn(Of CreateZipWhipMessageResponse) 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) ''' '''Create note for this ClubReady User ID ''' Public Overridable Property UserId As Integer ''' '''Subject of the message (Up to 255 characters) ''' Public Overridable Property Subject As String ''' '''Text body of the message (Up to 2000 characters) ''' Public Overridable Property Text As String Public Overridable Property RestrictedId As Nullable(Of Integer) Public Overridable Property RestrictedResourceType As RestrictedResourceType End Class Public Partial Class CreateZipWhipMessageResponse Inherits CreateZipWhipMessageResponseDto Public Overridable Property Success As Boolean Public Overridable Property Message As String Public Overridable Property NoteId As Long Public Overridable Property ContactLogId As Integer Public Overridable Property TaskId As Integer End Class End Namespace End Namespace