| All Verbs | /cmd/integrations/sync/ssd |
|---|
import Foundation
import ServiceStack
public class SyncPartnerSelfServiceDevice : Codable
{
public var id:String
public var deviceWalletId:String
public var deviceId:String
public var sessionId:String
public var deviceType:DeviceType
required public init(){}
}
public enum DeviceType : Int, Codable
{
case ClerkServicedKiosk = 0
case PersonalOnline = 1
case SelfServiceKiosk = 2
case Unknown = -1
}
Swift SyncPartnerSelfServiceDevice DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /cmd/integrations/sync/ssd HTTP/1.1
Host: api.sbbet.ath.cx
Accept: application/json
Content-Type: application/json
Content-Length: length
{"id":"String","deviceWalletId":"String","deviceId":"String","sessionId":"String","deviceType":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}