BokaMera.API.Host

<back to all web services

QvicklyCheckoutIpnCallBack

The following routes are available for this service:
POST/payment/billmate/v1/ipncallbackIPN callback for Qvickly checkout 1.0IPN callback for Qvickly checkout 1.0
<?php namespace dtos;

use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};


class IpnCallBackResponse implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $Message=null,
        /** @var bool|null */
        public ?bool $Success=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['Message'])) $this->Message = $o['Message'];
        if (isset($o['Success'])) $this->Success = $o['Success'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->Message)) $o['Message'] = $this->Message;
        if (isset($this->Success)) $o['Success'] = $this->Success;
        return empty($o) ? new class(){} : $o;
    }
}

class ServerDataResponse implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $HTTP_HOST=null,
        /** @var string|null */
        public ?string $HTTP_CONNECTION=null,
        /** @var string|null */
        public ?string $HTTP_CACHE_CONTROL=null,
        /** @var string|null */
        public ?string $HTTP_ACCEPT=null,
        /** @var string|null */
        public ?string $HTTP_USER_AGENT=null,
        /** @var string|null */
        public ?string $HTTP_ACCEPT_ENCODING=null,
        /** @var string|null */
        public ?string $HTTP_ACCEPT_LANGUAGE=null,
        /** @var string|null */
        public ?string $PATH=null,
        /** @var string|null */
        public ?string $SERVER_SOFTWARE=null,
        /** @var string|null */
        public ?string $SERVER_NAME=null,
        /** @var string|null */
        public ?string $SERVER_ADDR=null,
        /** @var string|null */
        public ?string $SERVER_PORT=null,
        /** @var string|null */
        public ?string $REMOTE_ADDR=null,
        /** @var string|null */
        public ?string $REMOTE_PORT=null,
        /** @var string|null */
        public ?string $GATEWAY_INTERFACE=null,
        /** @var string|null */
        public ?string $SERVER_PROTOCOL=null,
        /** @var string|null */
        public ?string $REQUEST_METHOD=null,
        /** @var string|null */
        public ?string $QUERY_STRING=null,
        /** @var string|null */
        public ?string $REQUEST_TIME=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['HTTP_HOST'])) $this->HTTP_HOST = $o['HTTP_HOST'];
        if (isset($o['HTTP_CONNECTION'])) $this->HTTP_CONNECTION = $o['HTTP_CONNECTION'];
        if (isset($o['HTTP_CACHE_CONTROL'])) $this->HTTP_CACHE_CONTROL = $o['HTTP_CACHE_CONTROL'];
        if (isset($o['HTTP_ACCEPT'])) $this->HTTP_ACCEPT = $o['HTTP_ACCEPT'];
        if (isset($o['HTTP_USER_AGENT'])) $this->HTTP_USER_AGENT = $o['HTTP_USER_AGENT'];
        if (isset($o['HTTP_ACCEPT_ENCODING'])) $this->HTTP_ACCEPT_ENCODING = $o['HTTP_ACCEPT_ENCODING'];
        if (isset($o['HTTP_ACCEPT_LANGUAGE'])) $this->HTTP_ACCEPT_LANGUAGE = $o['HTTP_ACCEPT_LANGUAGE'];
        if (isset($o['PATH'])) $this->PATH = $o['PATH'];
        if (isset($o['SERVER_SOFTWARE'])) $this->SERVER_SOFTWARE = $o['SERVER_SOFTWARE'];
        if (isset($o['SERVER_NAME'])) $this->SERVER_NAME = $o['SERVER_NAME'];
        if (isset($o['SERVER_ADDR'])) $this->SERVER_ADDR = $o['SERVER_ADDR'];
        if (isset($o['SERVER_PORT'])) $this->SERVER_PORT = $o['SERVER_PORT'];
        if (isset($o['REMOTE_ADDR'])) $this->REMOTE_ADDR = $o['REMOTE_ADDR'];
        if (isset($o['REMOTE_PORT'])) $this->REMOTE_PORT = $o['REMOTE_PORT'];
        if (isset($o['GATEWAY_INTERFACE'])) $this->GATEWAY_INTERFACE = $o['GATEWAY_INTERFACE'];
        if (isset($o['SERVER_PROTOCOL'])) $this->SERVER_PROTOCOL = $o['SERVER_PROTOCOL'];
        if (isset($o['REQUEST_METHOD'])) $this->REQUEST_METHOD = $o['REQUEST_METHOD'];
        if (isset($o['QUERY_STRING'])) $this->QUERY_STRING = $o['QUERY_STRING'];
        if (isset($o['REQUEST_TIME'])) $this->REQUEST_TIME = $o['REQUEST_TIME'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->HTTP_HOST)) $o['HTTP_HOST'] = $this->HTTP_HOST;
        if (isset($this->HTTP_CONNECTION)) $o['HTTP_CONNECTION'] = $this->HTTP_CONNECTION;
        if (isset($this->HTTP_CACHE_CONTROL)) $o['HTTP_CACHE_CONTROL'] = $this->HTTP_CACHE_CONTROL;
        if (isset($this->HTTP_ACCEPT)) $o['HTTP_ACCEPT'] = $this->HTTP_ACCEPT;
        if (isset($this->HTTP_USER_AGENT)) $o['HTTP_USER_AGENT'] = $this->HTTP_USER_AGENT;
        if (isset($this->HTTP_ACCEPT_ENCODING)) $o['HTTP_ACCEPT_ENCODING'] = $this->HTTP_ACCEPT_ENCODING;
        if (isset($this->HTTP_ACCEPT_LANGUAGE)) $o['HTTP_ACCEPT_LANGUAGE'] = $this->HTTP_ACCEPT_LANGUAGE;
        if (isset($this->PATH)) $o['PATH'] = $this->PATH;
        if (isset($this->SERVER_SOFTWARE)) $o['SERVER_SOFTWARE'] = $this->SERVER_SOFTWARE;
        if (isset($this->SERVER_NAME)) $o['SERVER_NAME'] = $this->SERVER_NAME;
        if (isset($this->SERVER_ADDR)) $o['SERVER_ADDR'] = $this->SERVER_ADDR;
        if (isset($this->SERVER_PORT)) $o['SERVER_PORT'] = $this->SERVER_PORT;
        if (isset($this->REMOTE_ADDR)) $o['REMOTE_ADDR'] = $this->REMOTE_ADDR;
        if (isset($this->REMOTE_PORT)) $o['REMOTE_PORT'] = $this->REMOTE_PORT;
        if (isset($this->GATEWAY_INTERFACE)) $o['GATEWAY_INTERFACE'] = $this->GATEWAY_INTERFACE;
        if (isset($this->SERVER_PROTOCOL)) $o['SERVER_PROTOCOL'] = $this->SERVER_PROTOCOL;
        if (isset($this->REQUEST_METHOD)) $o['REQUEST_METHOD'] = $this->REQUEST_METHOD;
        if (isset($this->QUERY_STRING)) $o['QUERY_STRING'] = $this->QUERY_STRING;
        if (isset($this->REQUEST_TIME)) $o['REQUEST_TIME'] = $this->REQUEST_TIME;
        return empty($o) ? new class(){} : $o;
    }
}

class CredentialsResponse implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $hash=null,
        /** @var string|null */
        public ?string $id=null,
        /** @var string|null */
        public ?string $version=null,
        /** @var string|null */
        public ?string $client=null,
        /** @var ServerDataResponse|null */
        public ?ServerDataResponse $serverdata=null,
        /** @var string|null */
        public ?string $time=null,
        /** @var string|null */
        public ?string $test=null,
        /** @var string|null */
        public ?string $language=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['hash'])) $this->hash = $o['hash'];
        if (isset($o['id'])) $this->id = $o['id'];
        if (isset($o['version'])) $this->version = $o['version'];
        if (isset($o['client'])) $this->client = $o['client'];
        if (isset($o['serverdata'])) $this->serverdata = JsonConverters::from('ServerDataResponse', $o['serverdata']);
        if (isset($o['time'])) $this->time = $o['time'];
        if (isset($o['test'])) $this->test = $o['test'];
        if (isset($o['language'])) $this->language = $o['language'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->hash)) $o['hash'] = $this->hash;
        if (isset($this->id)) $o['id'] = $this->id;
        if (isset($this->version)) $o['version'] = $this->version;
        if (isset($this->client)) $o['client'] = $this->client;
        if (isset($this->serverdata)) $o['serverdata'] = JsonConverters::to('ServerDataResponse', $this->serverdata);
        if (isset($this->time)) $o['time'] = $this->time;
        if (isset($this->test)) $o['test'] = $this->test;
        if (isset($this->language)) $o['language'] = $this->language;
        return empty($o) ? new class(){} : $o;
    }
}

class QvicklyIpnCallbackResponseData implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $number=null,
        /** @var string|null */
        public ?string $status=null,
        /** @var string|null */
        public ?string $orderid=null,
        /** @var string|null */
        public ?string $url=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['number'])) $this->number = $o['number'];
        if (isset($o['status'])) $this->status = $o['status'];
        if (isset($o['orderid'])) $this->orderid = $o['orderid'];
        if (isset($o['url'])) $this->url = $o['url'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->number)) $o['number'] = $this->number;
        if (isset($this->status)) $o['status'] = $this->status;
        if (isset($this->orderid)) $o['orderid'] = $this->orderid;
        if (isset($this->url)) $o['url'] = $this->url;
        return empty($o) ? new class(){} : $o;
    }
}

class QvicklyCheckoutIpnCallBack implements ICompany, JsonSerializable
{
    public function __construct(
        /** @description 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.")
        /** @var string|null */
        public ?string $CompanyId=null,

        /** @description The booking id. */
        // @ApiMember(Description="The booking id.")
        /** @var int */
        public int $BookingId=0,

        /** @description The payment credentials. */
        // @ApiMember(Description="The payment credentials.")
        /** @var CredentialsResponse|null */
        public ?CredentialsResponse $credentials=null,

        /** @description The payment ipn callback data. */
        // @ApiMember(Description="The payment ipn callback data.")
        /** @var QvicklyIpnCallbackResponseData|null */
        public ?QvicklyIpnCallbackResponseData $data=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
        if (isset($o['BookingId'])) $this->BookingId = $o['BookingId'];
        if (isset($o['credentials'])) $this->credentials = JsonConverters::from('CredentialsResponse', $o['credentials']);
        if (isset($o['data'])) $this->data = JsonConverters::from('QvicklyIpnCallbackResponseData', $o['data']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
        if (isset($this->BookingId)) $o['BookingId'] = $this->BookingId;
        if (isset($this->credentials)) $o['credentials'] = JsonConverters::to('CredentialsResponse', $this->credentials);
        if (isset($this->data)) $o['data'] = JsonConverters::to('QvicklyIpnCallbackResponseData', $this->data);
        return empty($o) ? new class(){} : $o;
    }
}

PHP QvicklyCheckoutIpnCallBack DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /payment/billmate/v1/ipncallback HTTP/1.1 
Host: api.bokamera.se 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<QvicklyCheckoutIpnCallBack xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <BookingId>0</BookingId>
  <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
  <credentials>
    <client>String</client>
    <hash>String</hash>
    <id>String</id>
    <language>String</language>
    <serverdata>
      <GATEWAY_INTERFACE>String</GATEWAY_INTERFACE>
      <HTTP_ACCEPT>String</HTTP_ACCEPT>
      <HTTP_ACCEPT_ENCODING>String</HTTP_ACCEPT_ENCODING>
      <HTTP_ACCEPT_LANGUAGE>String</HTTP_ACCEPT_LANGUAGE>
      <HTTP_CACHE_CONTROL>String</HTTP_CACHE_CONTROL>
      <HTTP_CONNECTION>String</HTTP_CONNECTION>
      <HTTP_HOST>String</HTTP_HOST>
      <HTTP_USER_AGENT>String</HTTP_USER_AGENT>
      <PATH>String</PATH>
      <QUERY_STRING>String</QUERY_STRING>
      <REMOTE_ADDR>String</REMOTE_ADDR>
      <REMOTE_PORT>String</REMOTE_PORT>
      <REQUEST_METHOD>String</REQUEST_METHOD>
      <REQUEST_TIME>String</REQUEST_TIME>
      <SERVER_ADDR>String</SERVER_ADDR>
      <SERVER_NAME>String</SERVER_NAME>
      <SERVER_PORT>String</SERVER_PORT>
      <SERVER_PROTOCOL>String</SERVER_PROTOCOL>
      <SERVER_SOFTWARE>String</SERVER_SOFTWARE>
    </serverdata>
    <test>String</test>
    <time>String</time>
    <version>String</version>
  </credentials>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/QvicklyIntegration.Models.Payment">
    <d2p1:number>String</d2p1:number>
    <d2p1:orderid>String</d2p1:orderid>
    <d2p1:status>String</d2p1:status>
    <d2p1:url>String</d2p1:url>
  </data>
</QvicklyCheckoutIpnCallBack>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<IpnCallBackResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <Message>String</Message>
  <Success>false</Success>
</IpnCallBackResponse>