Field Squared API Services

<back to all web services

ArrivalDeparture

Service representing an ArrivalDeparture object in a workspace.

The following routes are available for this service:
POST/{Workspace}/ArrivalDeparture/{ObjectId}
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    /**
    * Service representing an ArrivalDeparture object in a workspace.
    */
    public static class ArrivalDeparture
    {
        public String Workspace = null;
        public String ObjectId = null;
        public String ArrivalTime = null;
        public String DepartureTime = null;
        public Location GeofenceLocation = null;
        public String GeofenceId = null;
        public Double GeofenceRadius = null;
        public String User = null;
        public String Task = null;
        
        public String getWorkspace() { return Workspace; }
        public ArrivalDeparture setWorkspace(String value) { this.Workspace = value; return this; }
        public String getObjectId() { return ObjectId; }
        public ArrivalDeparture setObjectId(String value) { this.ObjectId = value; return this; }
        public String getArrivalTime() { return ArrivalTime; }
        public ArrivalDeparture setArrivalTime(String value) { this.ArrivalTime = value; return this; }
        public String getDepartureTime() { return DepartureTime; }
        public ArrivalDeparture setDepartureTime(String value) { this.DepartureTime = value; return this; }
        public Location getGeofenceLocation() { return GeofenceLocation; }
        public ArrivalDeparture setGeofenceLocation(Location value) { this.GeofenceLocation = value; return this; }
        public String getGeofenceId() { return GeofenceId; }
        public ArrivalDeparture setGeofenceId(String value) { this.GeofenceId = value; return this; }
        public Double getGeofenceRadius() { return GeofenceRadius; }
        public ArrivalDeparture setGeofenceRadius(Double value) { this.GeofenceRadius = value; return this; }
        public String getUser() { return User; }
        public ArrivalDeparture setUser(String value) { this.User = value; return this; }
        public String getTask() { return Task; }
        public ArrivalDeparture setTask(String value) { this.Task = value; return this; }
    }

    public static class Location
    {
        public Double y = null;
        public Double x = null;
        
        public Double getY() { return y; }
        public Location setY(Double value) { this.y = value; return this; }
        public Double getX() { return x; }
        public Location setX(Double value) { this.x = value; return this; }
    }

}

Java ArrivalDeparture DTOs

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

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /{Workspace}/ArrivalDeparture/{ObjectId} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<ArrivalDeparture xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.ArrivalDeparture">
  <ArrivalTime>String</ArrivalTime>
  <DepartureTime>String</DepartureTime>
  <GeofenceId>String</GeofenceId>
  <GeofenceLocation xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
    <d2p1:x>0</d2p1:x>
    <d2p1:y>0</d2p1:y>
  </GeofenceLocation>
  <GeofenceRadius>0</GeofenceRadius>
  <ObjectId>String</ObjectId>
  <Task>String</Task>
  <User>String</User>
  <Workspace>String</Workspace>
</ArrivalDeparture>