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 .xml suffix or ?format=xml

HTTP + XML

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: application/xml
Content-Type: application/xml
Content-Length: length

<VotingPollRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlbaApi.ServiceModel">
  <VotingPollAnswer xmlns:d2p1="http://schemas.datacontract.org/2004/07/AlbaApi.Model">
    <d2p1:ClientId>0</d2p1:ClientId>
    <d2p1:Code>String</d2p1:Code>
    <d2p1:ConfigurationVersionId>0</d2p1:ConfigurationVersionId>
    <d2p1:DateVoted>0001-01-01T00:00:00</d2p1:DateVoted>
    <d2p1:EndDate>0001-01-01T00:00:00</d2p1:EndDate>
    <d2p1:MemberId>0</d2p1:MemberId>
    <d2p1:Name>String</d2p1:Name>
    <d2p1:SelectionInfo>String</d2p1:SelectionInfo>
    <d2p1:StartDate>0001-01-01T00:00:00</d2p1:StartDate>
    <d2p1:Vote>String</d2p1:Vote>
  </VotingPollAnswer>
</VotingPollRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

(HttpWebResponse)