ScannerVision Web Server

<back to all web services

QuestionPickListValue

Requires Authentication
The following routes are available for this service:
POST/{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/listCheck
All Verbs/{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/{listCount}
All Verbs/{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/{listCount}/{searchString}
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class QuestionPickListValue extends QuestionPickList
    {
        public String PickListSelectedValue = null;
        
        public String getPickListSelectedValue() { return PickListSelectedValue; }
        public QuestionPickListValue setPickListSelectedValue(String value) { this.PickListSelectedValue = value; return this; }
    }

    public static class QuestionPickList extends QuestionRequestDto
    {
        public String PickListGuid = null;
        public String listCount = null;
        public String searchString = null;
        
        public String getPickListGuid() { return PickListGuid; }
        public QuestionPickList setPickListGuid(String value) { this.PickListGuid = value; return this; }
        public String getListCount() { return listCount; }
        public QuestionPickList setListCount(String value) { this.listCount = value; return this; }
        public String getSearchString() { return searchString; }
        public QuestionPickList setSearchString(String value) { this.searchString = value; return this; }
    }

    public static class QuestionRequestDto extends RequestBase
    {
        public String TemplateGuid = null;
        public String QuestionGuid = null;
        public String Parent = null;
        public String FolderBrowser = null;
        
        public String getTemplateGuid() { return TemplateGuid; }
        public QuestionRequestDto setTemplateGuid(String value) { this.TemplateGuid = value; return this; }
        public String getQuestionGuid() { return QuestionGuid; }
        public QuestionRequestDto setQuestionGuid(String value) { this.QuestionGuid = value; return this; }
        public String getParent() { return Parent; }
        public QuestionRequestDto setParent(String value) { this.Parent = value; return this; }
        public String getFolderBrowser() { return FolderBrowser; }
        public QuestionRequestDto setFolderBrowser(String value) { this.FolderBrowser = value; return this; }
    }

    public static class RequestBase extends DtoBase
    {
        
    }

    public static class DtoBase
    {
        public Brand Brand = null;
        
        public Brand getBrand() { return Brand; }
        public DtoBase setBrand(Brand value) { this.Brand = value; return this; }
    }

    public static enum Brand
    {
        Desktop,
        Hp,
        Kyocera,
        NeaScan,
        Samsung,
        FujiXerox,
        Ta,
        Utax,
        Epson,
        ScanFront400,
        Sharp,
        Ricoh,
        FujiFilm;
    }

}

Java QuestionPickListValue 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 /{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/listCheck HTTP/1.1 
Host: buildmax.org 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	PickListSelectedValue: String,
	PickListGuid: String,
	listCount: String,
	searchString: String,
	TemplateGuid: String,
	QuestionGuid: String,
	Parent: String,
	FolderBrowser: String,
	Brand: Desktop
}