/* Options: Date: 2024-10-06 10:26:34 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CRMTaxReceiptsNotesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/DynamicsCRM/TaxReceipts/Notes", Verbs="POST") public static class CRMTaxReceiptsNotesRequest implements IReturn> { public ArrayList guids = null; public ArrayList getGuids() { return guids; } public CRMTaxReceiptsNotesRequest setGuids(ArrayList value) { this.guids = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class CRMNoteResponse { public String subject = null; public String text = null; public String owner_first_name = null; public String owner_last_name = null; public String file_base64 = null; public String filename = null; public Integer filesize = null; public String mimetype = null; public Date added_date = null; public String getSubject() { return subject; } public CRMNoteResponse setSubject(String value) { this.subject = value; return this; } public String getText() { return text; } public CRMNoteResponse setText(String value) { this.text = value; return this; } public String getOwnerFirstName() { return owner_first_name; } public CRMNoteResponse setOwnerFirstName(String value) { this.owner_first_name = value; return this; } public String getOwnerLastName() { return owner_last_name; } public CRMNoteResponse setOwnerLastName(String value) { this.owner_last_name = value; return this; } public String getFileBase64() { return file_base64; } public CRMNoteResponse setFileBase64(String value) { this.file_base64 = value; return this; } public String getFilename() { return filename; } public CRMNoteResponse setFilename(String value) { this.filename = value; return this; } public Integer getFilesize() { return filesize; } public CRMNoteResponse setFilesize(Integer value) { this.filesize = value; return this; } public String getMimetype() { return mimetype; } public CRMNoteResponse setMimetype(String value) { this.mimetype = value; return this; } public Date getAddedDate() { return added_date; } public CRMNoteResponse setAddedDate(Date value) { this.added_date = value; return this; } } public static class CRMTaxReceiptNoteResponse extends CRMNoteResponse { public String guid = null; public String receipt_template_name = null; public Date receipt_sent_date = null; public Date receipt_email_sent_date = null; public String receipt_email_sent_to = null; public String salutation = null; public String first_name = null; public String last_name = null; public String receipt_email = null; public String getGuid() { return guid; } public CRMTaxReceiptNoteResponse setGuid(String value) { this.guid = value; return this; } public String getReceiptTemplateName() { return receipt_template_name; } public CRMTaxReceiptNoteResponse setReceiptTemplateName(String value) { this.receipt_template_name = value; return this; } public Date getReceiptSentDate() { return receipt_sent_date; } public CRMTaxReceiptNoteResponse setReceiptSentDate(Date value) { this.receipt_sent_date = value; return this; } public Date getReceiptEmailSentDate() { return receipt_email_sent_date; } public CRMTaxReceiptNoteResponse setReceiptEmailSentDate(Date value) { this.receipt_email_sent_date = value; return this; } public String getReceiptEmailSentTo() { return receipt_email_sent_to; } public CRMTaxReceiptNoteResponse setReceiptEmailSentTo(String value) { this.receipt_email_sent_to = value; return this; } public String getSalutation() { return salutation; } public CRMTaxReceiptNoteResponse setSalutation(String value) { this.salutation = value; return this; } public String getFirstName() { return first_name; } public CRMTaxReceiptNoteResponse setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public CRMTaxReceiptNoteResponse setLastName(String value) { this.last_name = value; return this; } public String getReceiptEmail() { return receipt_email; } public CRMTaxReceiptNoteResponse setReceiptEmail(String value) { this.receipt_email = value; return this; } } }