| All Verbs | /MoveTouch |
|---|
namespace GoToLightAPI
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type MoveTouch() =
///<summary>
///Delta horizontal
///</summary>
[<ApiMember(Description="Delta horizontal", IsRequired=true)>]
member val HorizontalDelta:Int32 = new Int32() with get,set
///<summary>
///Output number
///</summary>
[<ApiMember(Description="Output number", IsRequired=true)>]
member val VerticalDelta:Int32 = new Int32() with get,set
///<summary>
///Owner
///</summary>
[<ApiMember(Description="Owner", IsRequired=true)>]
member val Owner:String = null with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /MoveTouch HTTP/1.1
Host: clouddemo.pickeos.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"HorizontalDelta":0,"VerticalDelta":0,"Owner":"String"}