/* Options:
Date: 2025-04-09 00:57:51
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: CRMDonationNoteRequest.*
//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="/DynamicsCRM/Donation/{guid}/Note", Verbs="POST")
    public static class CRMDonationNoteRequest implements IReturn<CRMDonationNoteResponse>
    {
        public String guid = null;
        
        public String getGuid() { return guid; }
        public CRMDonationNoteRequest setGuid(String value) { this.guid = value; return this; }
        private static Object responseType = CRMDonationNoteResponse.class;
        public Object getResponseType() { return responseType; }
    }

    public static class CRMDonationNoteResponse extends CRMNoteResponse
    {
        public String first_name = null;
        public String last_name = null;
        
        public String getFirstName() { return first_name; }
        public CRMDonationNoteResponse setFirstName(String value) { this.first_name = value; return this; }
        public String getLastName() { return last_name; }
        public CRMDonationNoteResponse setLastName(String value) { this.last_name = value; return this; }
    }

    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; }
    }

}