AlbaApi

<back to all web services

VotingPollRequest

The following routes are available for this service:
POST/votingpoll/save
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class VotingPollAnswer implements IConvertible
{
    String? code;
    int? configurationVersionId;
    int? memberId;
    int? clientId;
    String? vote;
    String? name;
    String? selectionInfo;
    DateTime? dateVoted;
    DateTime? startDate;
    DateTime? endDate;

    VotingPollAnswer({this.code,this.configurationVersionId,this.memberId,this.clientId,this.vote,this.name,this.selectionInfo,this.dateVoted,this.startDate,this.endDate});
    VotingPollAnswer.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        code = json['code'];
        configurationVersionId = json['configurationVersionId'];
        memberId = json['memberId'];
        clientId = json['clientId'];
        vote = json['vote'];
        name = json['name'];
        selectionInfo = json['selectionInfo'];
        dateVoted = JsonConverters.fromJson(json['dateVoted'],'DateTime',context!);
        startDate = JsonConverters.fromJson(json['startDate'],'DateTime',context!);
        endDate = JsonConverters.fromJson(json['endDate'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'code': code,
        'configurationVersionId': configurationVersionId,
        'memberId': memberId,
        'clientId': clientId,
        'vote': vote,
        'name': name,
        'selectionInfo': selectionInfo,
        'dateVoted': JsonConverters.toJson(dateVoted,'DateTime',context!),
        'startDate': JsonConverters.toJson(startDate,'DateTime',context!),
        'endDate': JsonConverters.toJson(endDate,'DateTime',context!)
    };

    getTypeName() => "VotingPollAnswer";
    TypeContext? context = _ctx;
}

class VotingPollRequest implements IConvertible
{
    VotingPollAnswer? votingPollAnswer;

    VotingPollRequest({this.votingPollAnswer});
    VotingPollRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        votingPollAnswer = JsonConverters.fromJson(json['votingPollAnswer'],'VotingPollAnswer',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'votingPollAnswer': JsonConverters.toJson(votingPollAnswer,'VotingPollAnswer',context!)
    };

    getTypeName() => "VotingPollRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: <String, TypeInfo> {
    'VotingPollAnswer': TypeInfo(TypeOf.Class, create:() => VotingPollAnswer()),
    'VotingPollRequest': TypeInfo(TypeOf.Class, create:() => VotingPollRequest()),
});

Dart VotingPollRequest DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

{"votingPollAnswer":{"code":"String","configurationVersionId":0,"memberId":0,"clientId":0,"vote":"String","name":"String","selectionInfo":"String","dateVoted":"0001-01-01T00:00:00.0000000","startDate":"0001-01-01T00:00:00.0000000","endDate":"0001-01-01T00:00:00.0000000"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

(HttpWebResponse)