Go-to-Light Service 4.0.0.2397 - 121 - API License to Cloud Demo

<back to all web services

MissionGetListByType

Requires Authentication
The following routes are available for this service:
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 .other suffix or ?format=other

HTTP + OTHER

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/jsonl
Content-Type: text/jsonl
Content-Length: length

{"WithDetails":false,"MissionType":"NEW","MissionTypeFilter":"String"}