/* Options: Date: 2026-08-17 08:32:37 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: GiftCardTypeUpdateRequest.* //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="/GiftCardType", Verbs="PUT") public static class GiftCardTypeUpdateRequest implements IReturn { public GiftCardType item = null; public GiftCardType getItem() { return item; } public GiftCardTypeUpdateRequest setItem(GiftCardType value) { this.item = value; return this; } private static Object responseType = GiftCardTypeResult.class; public Object getResponseType() { return responseType; } } public static class GiftCardTypeResult { public GiftCardType item = null; public Integer statusCode = null; public String message = null; public GiftCardType getItem() { return item; } public GiftCardTypeResult setItem(GiftCardType value) { this.item = value; return this; } public Integer getStatusCode() { return statusCode; } public GiftCardTypeResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public GiftCardTypeResult setMessage(String value) { this.message = value; return this; } } public static class GiftCardType { public Integer id = null; public String name = null; public String scope = null; public Integer ownerId = null; public String currency = null; public Integer defaultExpiryMonths = null; public Boolean isActive = null; public Date createdAt = null; public Integer getId() { return id; } public GiftCardType setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public GiftCardType setName(String value) { this.name = value; return this; } public String getScope() { return scope; } public GiftCardType setScope(String value) { this.scope = value; return this; } public Integer getOwnerId() { return ownerId; } public GiftCardType setOwnerId(Integer value) { this.ownerId = value; return this; } public String getCurrency() { return currency; } public GiftCardType setCurrency(String value) { this.currency = value; return this; } public Integer getDefaultExpiryMonths() { return defaultExpiryMonths; } public GiftCardType setDefaultExpiryMonths(Integer value) { this.defaultExpiryMonths = value; return this; } public Boolean getIsActive() { return isActive; } public GiftCardType setIsActive(Boolean value) { this.isActive = value; return this; } public Date getCreatedAt() { return createdAt; } public GiftCardType setCreatedAt(Date value) { this.createdAt = value; return this; } } }