/* Options: Date: 2024-10-06 10:25:13 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: CRMSharepointLocationRequest.* //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/Sharepoint/Location", Verbs="POST") public static class CRMSharepointLocationRequest implements IReturn { public String application_guid = null; public String lead_guid = null; public Integer regent_id = null; public String getApplicationGuid() { return application_guid; } public CRMSharepointLocationRequest setApplicationGuid(String value) { this.application_guid = value; return this; } public String getLeadGuid() { return lead_guid; } public CRMSharepointLocationRequest setLeadGuid(String value) { this.lead_guid = value; return this; } public Integer getRegentId() { return regent_id; } public CRMSharepointLocationRequest setRegentId(Integer value) { this.regent_id = value; return this; } private static Object responseType = CRMSharepointLocationResponse.class; public Object getResponseType() { return responseType; } } public static class CRMSharepointLocationResponse { public ResponseStatus responseStatus = null; public String guid = null; public String relativeurl = null; public String regarding_guid = null; public ResponseStatus getResponseStatus() { return responseStatus; } public CRMSharepointLocationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getGuid() { return guid; } public CRMSharepointLocationResponse setGuid(String value) { this.guid = value; return this; } public String getRelativeurl() { return relativeurl; } public CRMSharepointLocationResponse setRelativeurl(String value) { this.relativeurl = value; return this; } public String getRegardingGuid() { return regarding_guid; } public CRMSharepointLocationResponse setRegardingGuid(String value) { this.regarding_guid = value; return this; } } }