/* Options: Date: 2025-07-17 23:40:21 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: VotingPollRequest.* //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="/votingpoll/save", Verbs="POST") public static class VotingPollRequest implements IReturn { public VotingPollAnswer votingPollAnswer = null; public VotingPollAnswer getVotingPollAnswer() { return votingPollAnswer; } public VotingPollRequest setVotingPollAnswer(VotingPollAnswer value) { this.votingPollAnswer = value; return this; } private static Object responseType = HttpWebResponse.class; public Object getResponseType() { return responseType; } } public static class VotingPollAnswer { public String code = null; public Long configurationVersionId = null; public Long memberId = null; public Integer clientId = null; public String vote = null; public String name = null; public String selectionInfo = null; public Date dateVoted = null; public Date startDate = null; public Date endDate = null; public String getCode() { return code; } public VotingPollAnswer setCode(String value) { this.code = value; return this; } public Long getConfigurationVersionId() { return configurationVersionId; } public VotingPollAnswer setConfigurationVersionId(Long value) { this.configurationVersionId = value; return this; } public Long getMemberId() { return memberId; } public VotingPollAnswer setMemberId(Long value) { this.memberId = value; return this; } public Integer getClientId() { return clientId; } public VotingPollAnswer setClientId(Integer value) { this.clientId = value; return this; } public String getVote() { return vote; } public VotingPollAnswer setVote(String value) { this.vote = value; return this; } public String getName() { return name; } public VotingPollAnswer setName(String value) { this.name = value; return this; } public String getSelectionInfo() { return selectionInfo; } public VotingPollAnswer setSelectionInfo(String value) { this.selectionInfo = value; return this; } public Date getDateVoted() { return dateVoted; } public VotingPollAnswer setDateVoted(Date value) { this.dateVoted = value; return this; } public Date getStartDate() { return startDate; } public VotingPollAnswer setStartDate(Date value) { this.startDate = value; return this; } public Date getEndDate() { return endDate; } public VotingPollAnswer setEndDate(Date value) { this.endDate = value; return this; } } public static class VotingPollAnswer implements IId, ITimestamp { public Long id = null; public Integer configurationVersionId = null; public Long memberId = null; public Integer clientId = null; public String code = null; public String vote = null; public String name = null; public String selectionInfo = null; public Date dateVoted = null; public Date startDate = null; public Date endDate = null; public Date dateCreated = null; public Date dateUpdated = null; public String createdBy = null; public String updatedBy = null; public byte[] timestamp = null; public Member member = null; public Long getId() { return id; } public VotingPollAnswer setId(Long value) { this.id = value; return this; } public Integer getConfigurationVersionId() { return configurationVersionId; } public VotingPollAnswer setConfigurationVersionId(Integer value) { this.configurationVersionId = value; return this; } public Long getMemberId() { return memberId; } public VotingPollAnswer setMemberId(Long value) { this.memberId = value; return this; } public Integer getClientId() { return clientId; } public VotingPollAnswer setClientId(Integer value) { this.clientId = value; return this; } public String getCode() { return code; } public VotingPollAnswer setCode(String value) { this.code = value; return this; } public String getVote() { return vote; } public VotingPollAnswer setVote(String value) { this.vote = value; return this; } public String getName() { return name; } public VotingPollAnswer setName(String value) { this.name = value; return this; } public String getSelectionInfo() { return selectionInfo; } public VotingPollAnswer setSelectionInfo(String value) { this.selectionInfo = value; return this; } public Date getDateVoted() { return dateVoted; } public VotingPollAnswer setDateVoted(Date value) { this.dateVoted = value; return this; } public Date getStartDate() { return startDate; } public VotingPollAnswer setStartDate(Date value) { this.startDate = value; return this; } public Date getEndDate() { return endDate; } public VotingPollAnswer setEndDate(Date value) { this.endDate = value; return this; } public Date getDateCreated() { return dateCreated; } public VotingPollAnswer setDateCreated(Date value) { this.dateCreated = value; return this; } public Date getDateUpdated() { return dateUpdated; } public VotingPollAnswer setDateUpdated(Date value) { this.dateUpdated = value; return this; } public String getCreatedBy() { return createdBy; } public VotingPollAnswer setCreatedBy(String value) { this.createdBy = value; return this; } public String getUpdatedBy() { return updatedBy; } public VotingPollAnswer setUpdatedBy(String value) { this.updatedBy = value; return this; } public byte[] getTimestamp() { return timestamp; } public VotingPollAnswer setTimestamp(byte[] value) { this.timestamp = value; return this; } public Member getMember() { return member; } public VotingPollAnswer setMember(Member value) { this.member = value; return this; } } }