/* Options: Date: 2026-08-17 09:11:03 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: GiftCardActivateRequest.* //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/Activate", Verbs="POST") public static class GiftCardActivateRequest implements IReturn { public Integer giftCardId = null; public String purchasePaymentReference = null; public Integer purchaseOwnerId = null; public String idempotencyKey = null; public Integer getGiftCardId() { return giftCardId; } public GiftCardActivateRequest setGiftCardId(Integer value) { this.giftCardId = value; return this; } public String getPurchasePaymentReference() { return purchasePaymentReference; } public GiftCardActivateRequest setPurchasePaymentReference(String value) { this.purchasePaymentReference = value; return this; } public Integer getPurchaseOwnerId() { return purchaseOwnerId; } public GiftCardActivateRequest setPurchaseOwnerId(Integer value) { this.purchaseOwnerId = value; return this; } public String getIdempotencyKey() { return idempotencyKey; } public GiftCardActivateRequest setIdempotencyKey(String value) { this.idempotencyKey = value; return this; } private static Object responseType = GiftCardSimpleResult.class; public Object getResponseType() { return responseType; } } public static class GiftCardSimpleResult { public Boolean success = null; public String status = null; public Integer statusCode = null; public String message = null; public Boolean isSuccess() { return success; } public GiftCardSimpleResult setSuccess(Boolean value) { this.success = value; return this; } public String getStatus() { return status; } public GiftCardSimpleResult setStatus(String value) { this.status = value; return this; } public Integer getStatusCode() { return statusCode; } public GiftCardSimpleResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public GiftCardSimpleResult setMessage(String value) { this.message = value; return this; } } }