/* Options: Date: 2024-11-24 15:04:17 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://clubready.com/api/current //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateUserNoteRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/users/{UserId}/notes/create", Verbs="POST") open class CreateUserNoteRequest : CreateUserNoteRequestDto(), IReturn, IRestrictedApiRequest { /** * Api Key - grants access to resources */ @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query") var ApiKey:String? = null /** * ClubReady Club ID (StoreID internally) */ @ApiMember(DataType="integer", Description="ClubReady Club ID (StoreID internally)", IsRequired=true, Name="StoreId", ParameterType="query") var StoreId:Int? = null /** * Create note for this ClubReady User ID */ @ApiMember(DataType="integer", Description="Create note for this ClubReady User ID", IsRequired=true, Name="UserId", ParameterType="query") var UserId:Int? = null /** * Subject of the note (Up to 255 characters) */ @ApiMember(DataType="string", Description="Subject of the note (Up to 255 characters)", IsRequired=true, Name="Subject", ParameterType="query") var Subject:String? = null /** * Text body of the note (Up to 2000 characters) */ @ApiMember(DataType="string", Description="Text body of the note (Up to 2000 characters)", IsRequired=true, Name="Text", ParameterType="query") var Text:String? = null /** * Note is being posted by this ClubReady User ID. */ @ApiMember(DataType="integer", Description="Note is being posted by this ClubReady User ID.", Name="PostedBy", ParameterType="query") var PostedBy:Int? = null var RestrictedId:Int? = null var RestrictedResourceType:RestrictedResourceType? = null companion object { private val responseType = CreateUserNoteResponse::class.java } override fun getResponseType(): Any? = CreateUserNoteRequest.responseType } open class CreateUserNoteResponse : CreateUserNoteResponseDto() { var Success:Boolean? = null var Message:String? = null var NoteId:Long? = null } enum class RestrictedResourceType { Store, Chain, User, Undefined, } open interface IRestrictedApiRequest : IApiKeyEndpoint { var RestrictedId:Int? var RestrictedResourceType:RestrictedResourceType? } open interface IApiKeyEndpoint { var ApiKey:String? } open class ApiDtoBase { var ApiKey:String? = null var StoreId:Int? = null var ChainId:Int? = null } open class CreateUserNoteRequestDto : ApiDtoBase() { var UserId:Int? = null var Subject:String? = null var Text:String? = null var PostedBy:Int? = null } open class CreateUserNoteResponseDto : ApiResponseBase() { var NoteId:Long? = null } open class ApiResponseBase { var Success:Boolean? = null var Message:String? = null }