/* Options: Date: 2024-05-20 22:11:51 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateZipWhipMessageRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/users/{UserId}/zipwhipmessage/create", Verbs="POST") public static class CreateZipWhipMessageRequest extends CreateZipWhipMessageRequestDto implements IReturn, IRestrictedApiRequest { /** * Api Key - grants access to resources */ @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query") public String ApiKey = null; /** * ClubReady Club ID (StoreID internally) */ @ApiMember(DataType="integer", Description="ClubReady Club ID (StoreID internally)", IsRequired=true, Name="StoreId", ParameterType="query") public Integer StoreId = 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") public Integer UserId = null; /** * Subject of the message (Up to 255 characters) */ @ApiMember(DataType="string", Description="Subject of the message (Up to 255 characters)", IsRequired=true, Name="Subject", ParameterType="query") public String Subject = null; /** * Text body of the message (Up to 2000 characters) */ @ApiMember(DataType="string", Description="Text body of the message (Up to 2000 characters)", IsRequired=true, Name="Text", ParameterType="query") public String Text = null; public Integer RestrictedId = null; public RestrictedResourceType RestrictedResourceType = null; public String getApiKey() { return ApiKey; } public CreateZipWhipMessageRequest setApiKey(String value) { this.ApiKey = value; return this; } public Integer getStoreId() { return StoreId; } public CreateZipWhipMessageRequest setStoreId(Integer value) { this.StoreId = value; return this; } public Integer getUserId() { return UserId; } public CreateZipWhipMessageRequest setUserId(Integer value) { this.UserId = value; return this; } public String getSubject() { return Subject; } public CreateZipWhipMessageRequest setSubject(String value) { this.Subject = value; return this; } public String getText() { return Text; } public CreateZipWhipMessageRequest setText(String value) { this.Text = value; return this; } public Integer getRestrictedId() { return RestrictedId; } public CreateZipWhipMessageRequest setRestrictedId(Integer value) { this.RestrictedId = value; return this; } public RestrictedResourceType getRestrictedResourceType() { return RestrictedResourceType; } public CreateZipWhipMessageRequest setRestrictedResourceType(RestrictedResourceType value) { this.RestrictedResourceType = value; return this; } private static Object responseType = CreateZipWhipMessageResponse.class; public Object getResponseType() { return responseType; } } public static class CreateZipWhipMessageResponse extends CreateZipWhipMessageResponseDto { public Boolean Success = null; public String Message = null; public Long NoteId = null; public Integer ContactLogId = null; public Integer TaskId = null; public Boolean isSuccess() { return Success; } public CreateZipWhipMessageResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getMessage() { return Message; } public CreateZipWhipMessageResponse setMessage(String value) { this.Message = value; return this; } public Long getNoteId() { return NoteId; } public CreateZipWhipMessageResponse setNoteId(Long value) { this.NoteId = value; return this; } public Integer getContactLogId() { return ContactLogId; } public CreateZipWhipMessageResponse setContactLogId(Integer value) { this.ContactLogId = value; return this; } public Integer getTaskId() { return TaskId; } public CreateZipWhipMessageResponse setTaskId(Integer value) { this.TaskId = value; return this; } } public static enum RestrictedResourceType { Store, Chain, User, Undefined; } public static interface IRestrictedApiRequest implements IApiKeyEndpoint { public Integer RestrictedId = null; public RestrictedResourceType RestrictedResourceType = null; } public static interface IApiKeyEndpoint { public String ApiKey = null; } public static class ApiDtoBase { public String ApiKey = null; public Integer StoreId = null; public Integer ChainId = null; public String getApiKey() { return ApiKey; } public ApiDtoBase setApiKey(String value) { this.ApiKey = value; return this; } public Integer getStoreId() { return StoreId; } public ApiDtoBase setStoreId(Integer value) { this.StoreId = value; return this; } public Integer getChainId() { return ChainId; } public ApiDtoBase setChainId(Integer value) { this.ChainId = value; return this; } } public static class CreateZipWhipMessageRequestDto extends ApiDtoBase { public Integer UserId = null; public String Subject = null; public String Text = null; public Integer PostedBy = null; public Integer getUserId() { return UserId; } public CreateZipWhipMessageRequestDto setUserId(Integer value) { this.UserId = value; return this; } public String getSubject() { return Subject; } public CreateZipWhipMessageRequestDto setSubject(String value) { this.Subject = value; return this; } public String getText() { return Text; } public CreateZipWhipMessageRequestDto setText(String value) { this.Text = value; return this; } public Integer getPostedBy() { return PostedBy; } public CreateZipWhipMessageRequestDto setPostedBy(Integer value) { this.PostedBy = value; return this; } } public static class CreateZipWhipMessageResponseDto extends ApiResponseBase { public Long NoteId = null; public Integer ContactLogId = null; public Integer TaskId = null; public Long getNoteId() { return NoteId; } public CreateZipWhipMessageResponseDto setNoteId(Long value) { this.NoteId = value; return this; } public Integer getContactLogId() { return ContactLogId; } public CreateZipWhipMessageResponseDto setContactLogId(Integer value) { this.ContactLogId = value; return this; } public Integer getTaskId() { return TaskId; } public CreateZipWhipMessageResponseDto setTaskId(Integer value) { this.TaskId = value; return this; } } public static class ApiResponseBase { public Boolean Success = null; public String Message = null; public Boolean isSuccess() { return Success; } public ApiResponseBase setSuccess(Boolean value) { this.Success = value; return this; } public String getMessage() { return Message; } public ApiResponseBase setMessage(String value) { this.Message = value; return this; } } }