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.*


/**
* Service representing an ArrivalDeparture object in a workspace.
*/
open class ArrivalDeparture
{
    var Workspace:String? = null
    var ObjectId:String? = null
    var ArrivalTime:String? = null
    var DepartureTime:String? = null
    var GeofenceLocation:Location? = null
    var GeofenceId:String? = null
    var GeofenceRadius:Double? = null
    var User:String? = null
    var Task:String? = null
}

open class Location
{
    var y:Double? = null
    var x:Double? = null
}

Kotlin ArrivalDeparture 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 /{Workspace}/ArrivalDeparture/{ObjectId} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Workspace: String,
	ObjectId: String,
	ArrivalTime: String,
	DepartureTime: String,
	GeofenceLocation: 
	{
		y: 0,
		x: 0
	},
	GeofenceId: String,
	GeofenceRadius: 0,
	User: String,
	Task: String
}