/* Options: Date: 2026-08-17 09:11:25 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GiftCardHoldRequest.* //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="/GiftCard/Hold", Verbs="POST") public static class GiftCardHoldRequest implements IReturn { public String code = null; public Integer amountMinor = null; public Integer eventId = null; public Integer targetOwnerId = null; public String orderPaymentReference = null; public String idempotencyKey = null; public String getCode() { return code; } public GiftCardHoldRequest setCode(String value) { this.code = value; return this; } public Integer getAmountMinor() { return amountMinor; } public GiftCardHoldRequest setAmountMinor(Integer value) { this.amountMinor = value; return this; } public Integer getEventId() { return eventId; } public GiftCardHoldRequest setEventId(Integer value) { this.eventId = value; return this; } public Integer getTargetOwnerId() { return targetOwnerId; } public GiftCardHoldRequest setTargetOwnerId(Integer value) { this.targetOwnerId = value; return this; } public String getOrderPaymentReference() { return orderPaymentReference; } public GiftCardHoldRequest setOrderPaymentReference(String value) { this.orderPaymentReference = value; return this; } public String getIdempotencyKey() { return idempotencyKey; } public GiftCardHoldRequest setIdempotencyKey(String value) { this.idempotencyKey = value; return this; } private static Object responseType = GiftCardHoldResult.class; public Object getResponseType() { return responseType; } } public static class GiftCardHoldResult { public Boolean ok = null; public String reason = null; public LocalizedMessage message = null; public Integer holdId = null; public Integer heldAmountMinor = null; public Integer remainingAvailableMinor = null; public Date expiresAt = null; public Integer statusCode = null; public Boolean isOk() { return ok; } public GiftCardHoldResult setOk(Boolean value) { this.ok = value; return this; } public String getReason() { return reason; } public GiftCardHoldResult setReason(String value) { this.reason = value; return this; } public LocalizedMessage getMessage() { return message; } public GiftCardHoldResult setMessage(LocalizedMessage value) { this.message = value; return this; } public Integer getHoldId() { return holdId; } public GiftCardHoldResult setHoldId(Integer value) { this.holdId = value; return this; } public Integer getHeldAmountMinor() { return heldAmountMinor; } public GiftCardHoldResult setHeldAmountMinor(Integer value) { this.heldAmountMinor = value; return this; } public Integer getRemainingAvailableMinor() { return remainingAvailableMinor; } public GiftCardHoldResult setRemainingAvailableMinor(Integer value) { this.remainingAvailableMinor = value; return this; } public Date getExpiresAt() { return expiresAt; } public GiftCardHoldResult setExpiresAt(Date value) { this.expiresAt = value; return this; } public Integer getStatusCode() { return statusCode; } public GiftCardHoldResult setStatusCode(Integer value) { this.statusCode = value; return this; } } public static class LocalizedMessage { public String is = null; public String en = null; public String getIs() { return is; } public LocalizedMessage setIs(String value) { this.is = value; return this; } public String getEn() { return en; } public LocalizedMessage setEn(String value) { this.en = value; return this; } } }