/* Options: Date: 2026-07-08 20:36:44 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: StaffPublicRespondRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/staff/respond", Verbs="GET,OPTIONS") public static class StaffPublicRespondRequest { public String Token = null; public String Action = null; public String Note = null; public BigDecimal Rate = null; public String Start = null; public String getToken() { return Token; } public StaffPublicRespondRequest setToken(String value) { this.Token = value; return this; } public String getAction() { return Action; } public StaffPublicRespondRequest setAction(String value) { this.Action = value; return this; } public String getNote() { return Note; } public StaffPublicRespondRequest setNote(String value) { this.Note = value; return this; } public BigDecimal getRate() { return Rate; } public StaffPublicRespondRequest setRate(BigDecimal value) { this.Rate = value; return this; } public String getStart() { return Start; } public StaffPublicRespondRequest setStart(String value) { this.Start = value; return this; } } }