Mercedes.VehicleManagement.API

<back to all web services

GetOutOfMarketAreaCommsJobsRequest

Requires Authentication
The following routes are available for this service:
GET/v1/OutOfMarketAreaGet list of all Out Of Market Area Commission Number importsGet list of all Out Of Market Area Commission Number imports
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class GetOutOfMarketAreaCommsJobsRequest implements IGet
    {
        
    }

    public static class OutOfMarketAreaCommsJobsResponse
    {
        public ArrayList<OutOfMarketAreaCommsJob> dataProcesses = new ArrayList<OutOfMarketAreaCommsJob>();
        
        public ArrayList<OutOfMarketAreaCommsJob> getDataProcesses() { return dataProcesses; }
        public OutOfMarketAreaCommsJobsResponse setDataProcesses(ArrayList<OutOfMarketAreaCommsJob> value) { this.dataProcesses = value; return this; }
    }

    public static class OutOfMarketAreaCommsJob
    {
        public Integer id = null;
        public String gasId = null;
        public String dateCreated = null;
        public Integer processedRecords = null;
        public Integer status = null;
        public String fileName = null;
        
        public Integer getId() { return id; }
        public OutOfMarketAreaCommsJob setId(Integer value) { this.id = value; return this; }
        public String getGasId() { return gasId; }
        public OutOfMarketAreaCommsJob setGasId(String value) { this.gasId = value; return this; }
        public String getDateCreated() { return dateCreated; }
        public OutOfMarketAreaCommsJob setDateCreated(String value) { this.dateCreated = value; return this; }
        public Integer getProcessedRecords() { return processedRecords; }
        public OutOfMarketAreaCommsJob setProcessedRecords(Integer value) { this.processedRecords = value; return this; }
        public Integer getStatus() { return status; }
        public OutOfMarketAreaCommsJob setStatus(Integer value) { this.status = value; return this; }
        public String getFileName() { return fileName; }
        public OutOfMarketAreaCommsJob setFileName(String value) { this.fileName = value; return this; }
    }

}

Java GetOutOfMarketAreaCommsJobsRequest 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.

GET /v1/OutOfMarketArea HTTP/1.1 
Host: uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"dataProcesses":[{"id":0,"gasId":"String","dateCreated":"String","processedRecords":0,"status":0,"fileName":"String"}]}