POST | /votingpoll/save |
---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class VotingPollAnswer:
code: Optional[str] = None
configuration_version_id: Optional[int] = None
member_id: Optional[int] = None
client_id: Optional[int] = None
vote: Optional[str] = None
name: Optional[str] = None
selection_info: Optional[str] = None
date_voted: Optional[datetime.datetime] = None
start_date: Optional[datetime.datetime] = None
end_date: Optional[datetime.datetime] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class VotingPollRequest:
voting_poll_answer: Optional[VotingPollAnswer] = None
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=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)