Reservation Station API

<back to all web services

GetUserSchedule

Requires Authentication
import Foundation
import ServiceStack

public class GetUserSchedule : ApiServiceRequest
{
    required public init(){ super.init() }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
    }
}

public class ApiServiceRequest : IServiceRequest, IHasApiKey, IHasDeviceInfo, Codable
{
    /**
    * The API Key required for authentication
    */
    // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)
    public var apiKey:String

    /**
    * Latitude of the user making this request
    */
    // @ApiMember(DataType="double", Description="Latitude of the user making this request")
    public var latitude:Double

    /**
    * Longitude of the user making this request
    */
    // @ApiMember(DataType="double", Description="Longitude of the user making this request")
    public var longitude:Double

    required public init(){}
}

public class GetUserScheduleResponse : ApiServiceResponse
{
    public var bookings:[UserScheduleDayData] = []

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case bookings
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        bookings = try container.decodeIfPresent([UserScheduleDayData].self, forKey: .bookings) ?? []
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if bookings.count > 0 { try container.encode(bookings, forKey: .bookings) }
    }
}

public class ApiServiceResponse : IServiceResponse, Codable
{
    public var Description:String
    public var heading:String
    public var wasSuccessful:Bool
    //modelState:Object ignored. Type could not be extended in Swift

    required public init(){}
}

public class UserScheduleDayData : Codable
{
    public var date:String
    public var bookings:[UserBookingData] = []

    required public init(){}
}

public class UserBookingData : IBookingData, Codable
{
    public var bookingId:Int
    public var start:String
    public var end:String
    public var remindStart:Bool
    public var remind30Mins:Bool
    public var remind1Hour:Bool
    public var remind6Hours:Bool
    public var remind12Hours:Bool
    public var remind1Day:Bool
    public var remind1Week:Bool
    public var facilityName:String
    public var facilityId:Int
    public var bookingNotes:String
    public var billedAmount:Double
    public var billableHours:Double
    public var finished:Bool
    public var facilityTimeOffset:Int
    public var cancellationLeadTime:Int
    public var isCoordinator:Bool
    public var userData:GuestData
    public var allowExtraRequirements:Bool

    required public init(){}
}

public class GuestData : Codable
{
    public var name:String
    public var emailAddress:String
    public var mobileNumber:String
    public var userCustomFields:[UserCustomFieldData] = []
    public var isAlreadyUser:Bool
    public var systemUserId:Int

    required public init(){}
}

public class UserCustomFieldData : Codable
{
    public var id:String
    public var value:String
    public var name:String
    public var optional:Bool

    required public init(){}
}


Swift GetUserSchedule 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 /jsv/reply/GetUserSchedule HTTP/1.1 
Host: reservation.api.dev.86degrees.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	apiKey: String,
	latitude: 0,
	longitude: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	bookings: 
	[
		{
			
		}
	],
	description: String,
	heading: String,
	wasSuccessful: False,
	modelState: {}
}