Requires any of the roles: | bookingsupplier-administrator-write, bookingsupplier-administrator-read, superadmin |
GET | /bookings/reports/ | Get all reports | Get a list of all existing reports. |
---|
import Foundation
import ServiceStack
// @ValidateRequest(Validator="IsAuthenticated")
public class ReportQuery : QueryDb2<BookingPrintout, BookingPrintoutQueryResponse>, ICompany
{
/**
* The company id, if empty will use the company id for the user you are logged in with.
*/
// @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
public var companyId:String?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case companyId
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
companyId = try container.decodeIfPresent(String.self, forKey: .companyId)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if companyId != nil { try container.encode(companyId, forKey: .companyId) }
}
}
public class BookingPrintout : BaseModel
{
// @Required()
public var companyId:String?
public var id:Int
// @Required()
public var name:String?
public var headerLeftCell:String
public var headerMiddleCell:String
public var headerRightCell:String
// @Required()
public var bodyCell:String?
public var footerLeftCell:String
public var footerMiddleCell:String
public var footerRightCell:String
public var modifiedDate:Date?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case companyId
case id
case name
case headerLeftCell
case headerMiddleCell
case headerRightCell
case bodyCell
case footerLeftCell
case footerMiddleCell
case footerRightCell
case modifiedDate
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
companyId = try container.decodeIfPresent(String.self, forKey: .companyId)
id = try container.decodeIfPresent(Int.self, forKey: .id)
name = try container.decodeIfPresent(String.self, forKey: .name)
headerLeftCell = try container.decodeIfPresent(String.self, forKey: .headerLeftCell)
headerMiddleCell = try container.decodeIfPresent(String.self, forKey: .headerMiddleCell)
headerRightCell = try container.decodeIfPresent(String.self, forKey: .headerRightCell)
bodyCell = try container.decodeIfPresent(String.self, forKey: .bodyCell)
footerLeftCell = try container.decodeIfPresent(String.self, forKey: .footerLeftCell)
footerMiddleCell = try container.decodeIfPresent(String.self, forKey: .footerMiddleCell)
footerRightCell = try container.decodeIfPresent(String.self, forKey: .footerRightCell)
modifiedDate = try container.decodeIfPresent(Date.self, forKey: .modifiedDate)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if companyId != nil { try container.encode(companyId, forKey: .companyId) }
if id != nil { try container.encode(id, forKey: .id) }
if name != nil { try container.encode(name, forKey: .name) }
if headerLeftCell != nil { try container.encode(headerLeftCell, forKey: .headerLeftCell) }
if headerMiddleCell != nil { try container.encode(headerMiddleCell, forKey: .headerMiddleCell) }
if headerRightCell != nil { try container.encode(headerRightCell, forKey: .headerRightCell) }
if bodyCell != nil { try container.encode(bodyCell, forKey: .bodyCell) }
if footerLeftCell != nil { try container.encode(footerLeftCell, forKey: .footerLeftCell) }
if footerMiddleCell != nil { try container.encode(footerMiddleCell, forKey: .footerMiddleCell) }
if footerRightCell != nil { try container.encode(footerRightCell, forKey: .footerRightCell) }
if modifiedDate != nil { try container.encode(modifiedDate, forKey: .modifiedDate) }
}
}
public class BaseModel : Codable
{
required public init(){}
}
public class BookingPrintoutQueryResponse : Codable
{
/**
* Report id
*/
// @ApiMember(Description="Report id")
public var id:Int
/**
* Report Name
*/
// @ApiMember(Description="Report Name")
public var name:String
/**
* Report header left cell content
*/
// @ApiMember(Description="Report header left cell content", IsRequired=true)
public var headerLeftCell:String
/**
* Report header middle cell content
*/
// @ApiMember(Description="Report header middle cell content", IsRequired=true)
public var headerMiddleCell:String
/**
* Report header right cell content
*/
// @ApiMember(Description="Report header right cell content", IsRequired=true)
public var headerRightCell:String
/**
* Report body cell content
*/
// @ApiMember(Description="Report body cell content", IsRequired=true)
public var bodyCell:String
/**
* Report footer left cell content
*/
// @ApiMember(Description="Report footer left cell content", IsRequired=true)
public var footerLeftCell:String
/**
* Report footer middle cell content
*/
// @ApiMember(Description="Report footer middle cell content", IsRequired=true)
public var footerMiddleCell:String
/**
* Report footer right cell content
*/
// @ApiMember(Description="Report footer right cell content", IsRequired=true)
public var footerRightCell:String
required public init(){}
}
public class AccessKeyTypeResponse : Codable
{
public var id:Int
public var keyType:String
public var Description:String
required public init(){}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /bookings/reports/ HTTP/1.1 Host: api.bokamera.se Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <QueryResponseOfBookingPrintoutQueryResponseWg5EthtI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <Offset>0</Offset> <Total>0</Total> <Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <d2p1:BookingPrintoutQueryResponse> <d2p1:BodyCell>String</d2p1:BodyCell> <d2p1:FooterLeftCell>String</d2p1:FooterLeftCell> <d2p1:FooterMiddleCell>String</d2p1:FooterMiddleCell> <d2p1:FooterRightCell>String</d2p1:FooterRightCell> <d2p1:HeaderLeftCell>String</d2p1:HeaderLeftCell> <d2p1:HeaderMiddleCell>String</d2p1:HeaderMiddleCell> <d2p1:HeaderRightCell>String</d2p1:HeaderRightCell> <d2p1:Id>0</d2p1:Id> <d2p1:Name>String</d2p1:Name> </d2p1:BookingPrintoutQueryResponse> </Results> <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>String</d2p1:Key> <d2p1:Value>String</d2p1:Value> </d2p1:KeyValueOfstringstring> </Meta> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </Meta> </ResponseError> </Errors> <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </Meta> </ResponseStatus> </QueryResponseOfBookingPrintoutQueryResponseWg5EthtI>