/* Options: Date: 2025-04-19 04:22:04 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: QvicklyCheckoutIpnCallBack.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/payment/billmate/v1/ipncallback", Verbs="POST") public static class QvicklyCheckoutIpnCallBack implements IReturn, 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; } private static Object responseType = IpnCallBackResponse.class; public Object getResponseType() { return responseType; } } 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; } } public static interface ICompany { public UUID CompanyId = null; } 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; } } }