/* Options: Date: 2026-02-14 19:37:16 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDashboardHome.* //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="/dashboard/home") public static class GetDashboardHome implements IReturn { public String accountId = null; public String startDate = null; public String endDate = null; public String getAccountId() { return accountId; } public GetDashboardHome setAccountId(String value) { this.accountId = value; return this; } public String getStartDate() { return startDate; } public GetDashboardHome setStartDate(String value) { this.startDate = value; return this; } public String getEndDate() { return endDate; } public GetDashboardHome setEndDate(String value) { this.endDate = value; return this; } private static Object responseType = DashboardHomeData.class; public Object getResponseType() { return responseType; } } public static class DashboardHomeData { public ArrayList customerSpends = null; public ArrayList getCustomerSpends() { return customerSpends; } public DashboardHomeData setCustomerSpends(ArrayList value) { this.customerSpends = value; return this; } } public static class DashboardCustomerSpend { public String customerId = null; public String customerName = null; public Double callSpend = null; public String getCustomerId() { return customerId; } public DashboardCustomerSpend setCustomerId(String value) { this.customerId = value; return this; } public String getCustomerName() { return customerName; } public DashboardCustomerSpend setCustomerName(String value) { this.customerName = value; return this; } public Double getCallSpend() { return callSpend; } public DashboardCustomerSpend setCallSpend(Double value) { this.callSpend = value; return this; } } }