/* Options: Date: 2024-10-06 10:26:43 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: CRMActivityUpdateOwnerRequest.* //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/Activity/UpdateOwner", Verbs="POST") public static class CRMActivityUpdateOwnerRequest implements IReturn { public Integer regent_id = null; public Integer import_id = null; public String related_username = null; public Boolean is_contact = null; public Boolean is_account = null; public Boolean is_email = null; public Boolean is_letter = null; public Boolean is_phonecall = null; public Boolean is_task = null; public Boolean is_meeting = null; public Integer getRegentId() { return regent_id; } public CRMActivityUpdateOwnerRequest setRegentId(Integer value) { this.regent_id = value; return this; } public Integer getImportId() { return import_id; } public CRMActivityUpdateOwnerRequest setImportId(Integer value) { this.import_id = value; return this; } public String getRelatedUsername() { return related_username; } public CRMActivityUpdateOwnerRequest setRelatedUsername(String value) { this.related_username = value; return this; } public Boolean getIsContact() { return is_contact; } public CRMActivityUpdateOwnerRequest setIsContact(Boolean value) { this.is_contact = value; return this; } public Boolean getIsAccount() { return is_account; } public CRMActivityUpdateOwnerRequest setIsAccount(Boolean value) { this.is_account = value; return this; } public Boolean getIsEmail() { return is_email; } public CRMActivityUpdateOwnerRequest setIsEmail(Boolean value) { this.is_email = value; return this; } public Boolean getIsLetter() { return is_letter; } public CRMActivityUpdateOwnerRequest setIsLetter(Boolean value) { this.is_letter = value; return this; } public Boolean getIsPhonecall() { return is_phonecall; } public CRMActivityUpdateOwnerRequest setIsPhonecall(Boolean value) { this.is_phonecall = value; return this; } public Boolean getIsTask() { return is_task; } public CRMActivityUpdateOwnerRequest setIsTask(Boolean value) { this.is_task = value; return this; } public Boolean getIsMeeting() { return is_meeting; } public CRMActivityUpdateOwnerRequest setIsMeeting(Boolean value) { this.is_meeting = value; return this; } private static Object responseType = ResponseStatus.class; public Object getResponseType() { return responseType; } } @DataContract public static class ResponseStatus { @DataMember(Order=1) public String errorCode = null; @DataMember(Order=2) public String message = null; @DataMember(Order=3) public String stackTrace = null; @DataMember(Order=4) public ArrayList errors = null; @DataMember(Order=5) public HashMap meta = null; public String getErrorCode() { return errorCode; } public ResponseStatus setErrorCode(String value) { this.errorCode = value; return this; } public String getMessage() { return message; } public ResponseStatus setMessage(String value) { this.message = value; return this; } public String getStackTrace() { return stackTrace; } public ResponseStatus setStackTrace(String value) { this.stackTrace = value; return this; } public ArrayList getErrors() { return errors; } public ResponseStatus setErrors(ArrayList value) { this.errors = value; return this; } public HashMap getMeta() { return meta; } public ResponseStatus setMeta(HashMap value) { this.meta = value; return this; } } }