AlbaApi

<back to all web services

VotingPollRequest

The following routes are available for this service:
POST/votingpoll/save
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class VotingPollRequest
    {
        public VotingPollAnswer votingPollAnswer = null;
        
        public VotingPollAnswer getVotingPollAnswer() { return votingPollAnswer; }
        public VotingPollRequest setVotingPollAnswer(VotingPollAnswer value) { this.votingPollAnswer = value; return this; }
    }

    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; }
    }

}

Java VotingPollRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /votingpoll/save HTTP/1.1 
Host: hcbtas-q-albamfs-api.azurewebsites.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	votingPollAnswer: 
	{
		code: String,
		configurationVersionId: 0,
		memberId: 0,
		clientId: 0,
		vote: String,
		name: String,
		selectionInfo: String,
		dateVoted: 0001-01-01,
		startDate: 0001-01-01,
		endDate: 0001-01-01
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

(HttpWebResponse)