| All Verbs | /MissionGetListByType |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class MissionGetListByType
{
/**
* With mission details
*/
@ApiMember(Description="With mission details")
public Boolean WithDetails = null;
/**
* Type of mission to include
*/
@ApiMember(Description="Type of mission to include")
public MissionType MissionType = null;
/**
* Optional: mission type filter
*/
@ApiMember(Description="Optional: mission type filter")
public String MissionTypeFilter = null;
public Boolean isWithDetails() { return WithDetails; }
public MissionGetListByType setWithDetails(Boolean value) { this.WithDetails = value; return this; }
public MissionType getMissionType() { return MissionType; }
public MissionGetListByType setMissionType(MissionType value) { this.MissionType = value; return this; }
public String getMissionTypeFilter() { return MissionTypeFilter; }
public MissionGetListByType setMissionTypeFilter(String value) { this.MissionTypeFilter = value; return this; }
}
public static enum MissionType
{
New,
Started,
Ended;
}
}
Java MissionGetListByType DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /MissionGetListByType HTTP/1.1
Host: clouddemo.pickeos.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
WithDetails: False,
MissionType: NEW,
MissionTypeFilter: String
}