/* Options: Date: 2026-06-22 20:28:20 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: PortalAccountRequest.* //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/portal/account/{Token}", Verbs="GET,OPTIONS") public static class PortalAccountRequest implements IReturn { public String Token = null; public String getToken() { return Token; } public PortalAccountRequest setToken(String value) { this.Token = value; return this; } private static Object responseType = PortalAccount.class; public Object getResponseType() { return responseType; } } public static class PortalAccount { public String CustomerName = null; public ArrayList Visits = new ArrayList(); public ArrayList Invoices = new ArrayList(); public ArrayList Quotes = new ArrayList(); public ResponseStatus ResponseStatus = null; public String getCustomerName() { return CustomerName; } public PortalAccount setCustomerName(String value) { this.CustomerName = value; return this; } public ArrayList getVisits() { return Visits; } public PortalAccount setVisits(ArrayList value) { this.Visits = value; return this; } public ArrayList getInvoices() { return Invoices; } public PortalAccount setInvoices(ArrayList value) { this.Invoices = value; return this; } public ArrayList getQuotes() { return Quotes; } public PortalAccount setQuotes(ArrayList value) { this.Quotes = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PortalAccount setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class PortalAccountVisit { public Date VisitDate = null; public String ServiceName = null; public String ProjectName = null; public Date getVisitDate() { return VisitDate; } public PortalAccountVisit setVisitDate(Date value) { this.VisitDate = value; return this; } public String getServiceName() { return ServiceName; } public PortalAccountVisit setServiceName(String value) { this.ServiceName = value; return this; } public String getProjectName() { return ProjectName; } public PortalAccountVisit setProjectName(String value) { this.ProjectName = value; return this; } } public static class PortalAccountInvoice { public UUID InvoiceUID = null; public String InvoiceNumber = null; public Date InvoiceDate = null; public BigDecimal Total = null; public Boolean IsPaid = null; public String ProjectName = null; public UUID getInvoiceUID() { return InvoiceUID; } public PortalAccountInvoice setInvoiceUID(UUID value) { this.InvoiceUID = value; return this; } public String getInvoiceNumber() { return InvoiceNumber; } public PortalAccountInvoice setInvoiceNumber(String value) { this.InvoiceNumber = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public PortalAccountInvoice setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public BigDecimal getTotal() { return Total; } public PortalAccountInvoice setTotal(BigDecimal value) { this.Total = value; return this; } public Boolean getIsPaid() { return IsPaid; } public PortalAccountInvoice setIsPaid(Boolean value) { this.IsPaid = value; return this; } public String getProjectName() { return ProjectName; } public PortalAccountInvoice setProjectName(String value) { this.ProjectName = value; return this; } } public static class PortalAccountQuote { public UUID QuoteUID = null; public String Name = null; public BigDecimal Total = null; public String Status = null; public String ProjectName = null; public UUID getQuoteUID() { return QuoteUID; } public PortalAccountQuote setQuoteUID(UUID value) { this.QuoteUID = value; return this; } public String getName() { return Name; } public PortalAccountQuote setName(String value) { this.Name = value; return this; } public BigDecimal getTotal() { return Total; } public PortalAccountQuote setTotal(BigDecimal value) { this.Total = value; return this; } public String getStatus() { return Status; } public PortalAccountQuote setStatus(String value) { this.Status = value; return this; } public String getProjectName() { return ProjectName; } public PortalAccountQuote setProjectName(String value) { this.ProjectName = value; return this; } } }