POST | /payment/billmate/v1/ipncallback | IPN callback for Qvickly checkout 1.0 | IPN callback for Qvickly checkout 1.0 |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class QvicklyCheckoutIpnCallBack implements 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 UUID CompanyId = null;
/**
* Internal reference id (Could be booking, could be Article..)
*/
@ApiMember(Description="Internal reference id (Could be booking, could be Article..)")
public String BookingId = null;
/**
* The payment ipn callback data.
*/
@ApiMember(Description="The payment ipn callback data.")
public QvicklyIpnCallbackResponseData data = null;
/**
* Article type (Could be Service, rebate code types, etc..
*/
@ApiMember(Description="Article type (Could be Service, rebate code types, etc..", IsRequired=true)
public Integer ArticleTypeId = null;
public UUID getCompanyId() { return CompanyId; }
public QvicklyCheckoutIpnCallBack setCompanyId(UUID value) { this.CompanyId = value; return this; }
public String getBookingId() { return BookingId; }
public QvicklyCheckoutIpnCallBack setBookingId(String value) { this.BookingId = value; return this; }
public QvicklyIpnCallbackResponseData getData() { return data; }
public QvicklyCheckoutIpnCallBack setData(QvicklyIpnCallbackResponseData value) { this.data = value; return this; }
public Integer getArticleTypeId() { return ArticleTypeId; }
public QvicklyCheckoutIpnCallBack setArticleTypeId(Integer value) { this.ArticleTypeId = value; return this; }
}
public static class QvicklyIpnCallbackResponseData
{
public String number = null;
public String status = null;
public String orderid = null;
public String url = null;
public String getNumber() { return number; }
public QvicklyIpnCallbackResponseData setNumber(String value) { this.number = value; return this; }
public String getStatus() { return status; }
public QvicklyIpnCallbackResponseData setStatus(String value) { this.status = value; return this; }
public String getOrderid() { return orderid; }
public QvicklyIpnCallbackResponseData setOrderid(String value) { this.orderid = value; return this; }
public String getUrl() { return url; }
public QvicklyIpnCallbackResponseData setUrl(String value) { this.url = value; return this; }
}
public static class IpnCallBackResponse
{
public String Message = null;
public Boolean Success = null;
public String getMessage() { return Message; }
public IpnCallBackResponse setMessage(String value) { this.Message = value; return this; }
public Boolean isSuccess() { return Success; }
public IpnCallBackResponse setSuccess(Boolean value) { this.Success = value; return this; }
}
}
Java QvicklyCheckoutIpnCallBack DTOs
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 /payment/billmate/v1/ipncallback HTTP/1.1
Host: testapi.bokamera.se
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","BookingId":"String","data":{"number":"String","status":"String","orderid":"String","url":"String"},"ArticleTypeId":0}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"Message":"String","Success":false}