/* Options: Date: 2026-08-17 09:14:27 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: WebshopPayoutInfoUpdateRequest.* //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/PayoutInfo", Verbs="PUT") public static class WebshopPayoutInfoUpdateRequest implements IReturn { public WebshopPayoutInfo item = null; public Integer ownerId = null; public WebshopPayoutInfo getItem() { return item; } public WebshopPayoutInfoUpdateRequest setItem(WebshopPayoutInfo value) { this.item = value; return this; } public Integer getOwnerId() { return ownerId; } public WebshopPayoutInfoUpdateRequest setOwnerId(Integer value) { this.ownerId = value; return this; } private static Object responseType = WebshopPayoutInfoResult.class; public Object getResponseType() { return responseType; } } public static class WebshopPayoutInfoResult { public WebshopPayoutInfo item = null; public Integer statusCode = null; public String message = null; public WebshopPayoutInfo getItem() { return item; } public WebshopPayoutInfoResult setItem(WebshopPayoutInfo value) { this.item = value; return this; } public Integer getStatusCode() { return statusCode; } public WebshopPayoutInfoResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public WebshopPayoutInfoResult setMessage(String value) { this.message = value; return this; } } public static class WebshopPayoutInfo { public Integer id = null; public Integer ownerId = null; @StringLength(200) public String name = null; @StringLength(50) public String accountNumber = null; @StringLength(20) public String ssn = null; @StringLength(100) public String tag = null; public Boolean active = null; public Integer legacyId = null; public Date createdAt = null; public Integer getId() { return id; } public WebshopPayoutInfo setId(Integer value) { this.id = value; return this; } public Integer getOwnerId() { return ownerId; } public WebshopPayoutInfo setOwnerId(Integer value) { this.ownerId = value; return this; } public String getName() { return name; } public WebshopPayoutInfo setName(String value) { this.name = value; return this; } public String getAccountNumber() { return accountNumber; } public WebshopPayoutInfo setAccountNumber(String value) { this.accountNumber = value; return this; } public String getSsn() { return ssn; } public WebshopPayoutInfo setSsn(String value) { this.ssn = value; return this; } public String getTag() { return tag; } public WebshopPayoutInfo setTag(String value) { this.tag = value; return this; } public Boolean isActive() { return active; } public WebshopPayoutInfo setActive(Boolean value) { this.active = value; return this; } public Integer getLegacyId() { return legacyId; } public WebshopPayoutInfo setLegacyId(Integer value) { this.legacyId = value; return this; } public Date getCreatedAt() { return createdAt; } public WebshopPayoutInfo setCreatedAt(Date value) { this.createdAt = value; return this; } } }