/* Options: Date: 2026-08-17 09:14:24 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: WebshopSettingsGetRequest.* //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="/Webshop/Settings/{OwnerId}", Verbs="GET") public static class WebshopSettingsGetRequest implements IReturn { public Integer ownerId = null; public Integer getOwnerId() { return ownerId; } public WebshopSettingsGetRequest setOwnerId(Integer value) { this.ownerId = value; return this; } private static Object responseType = WebshopSettingsResult.class; public Object getResponseType() { return responseType; } } public static class WebshopSettingsResult { public WebshopSettings item = null; public Integer statusCode = null; public String message = null; public WebshopSettings getItem() { return item; } public WebshopSettingsResult setItem(WebshopSettings value) { this.item = value; return this; } public Integer getStatusCode() { return statusCode; } public WebshopSettingsResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public WebshopSettingsResult setMessage(String value) { this.message = value; return this; } } public static class WebshopSettings { public Integer id = null; public Integer ownerId = null; @StringLength(200) public String orderEmail = null; public Boolean pickupAllowed = null; public Boolean droppAllowed = null; public Boolean shippedAllowed = null; @StringLength(300) public String pickupAddress = null; @StringLength(500) public String pickupDescription = null; public Integer droppFeeMinor = null; public Integer shippedFeeMinor = null; @StringLength(50) public String legacyTeamNumber = null; public Date createdAt = null; public Date updatedAt = null; public Integer getId() { return id; } public WebshopSettings setId(Integer value) { this.id = value; return this; } public Integer getOwnerId() { return ownerId; } public WebshopSettings setOwnerId(Integer value) { this.ownerId = value; return this; } public String getOrderEmail() { return orderEmail; } public WebshopSettings setOrderEmail(String value) { this.orderEmail = value; return this; } public Boolean isPickupAllowed() { return pickupAllowed; } public WebshopSettings setPickupAllowed(Boolean value) { this.pickupAllowed = value; return this; } public Boolean isDroppAllowed() { return droppAllowed; } public WebshopSettings setDroppAllowed(Boolean value) { this.droppAllowed = value; return this; } public Boolean isShippedAllowed() { return shippedAllowed; } public WebshopSettings setShippedAllowed(Boolean value) { this.shippedAllowed = value; return this; } public String getPickupAddress() { return pickupAddress; } public WebshopSettings setPickupAddress(String value) { this.pickupAddress = value; return this; } public String getPickupDescription() { return pickupDescription; } public WebshopSettings setPickupDescription(String value) { this.pickupDescription = value; return this; } public Integer getDroppFeeMinor() { return droppFeeMinor; } public WebshopSettings setDroppFeeMinor(Integer value) { this.droppFeeMinor = value; return this; } public Integer getShippedFeeMinor() { return shippedFeeMinor; } public WebshopSettings setShippedFeeMinor(Integer value) { this.shippedFeeMinor = value; return this; } public String getLegacyTeamNumber() { return legacyTeamNumber; } public WebshopSettings setLegacyTeamNumber(String value) { this.legacyTeamNumber = value; return this; } public Date getCreatedAt() { return createdAt; } public WebshopSettings setCreatedAt(Date value) { this.createdAt = value; return this; } public Date getUpdatedAt() { return updatedAt; } public WebshopSettings setUpdatedAt(Date value) { this.updatedAt = value; return this; } } }