/* Options: Date: 2024-10-06 10:31: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: CRMActivityPartiesInfoRequest.* //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/ActivityParties/Info", Verbs="POST") public static class CRMActivityPartiesInfoRequest implements IReturn { private static Object responseType = CRMActivityPartiesInfoResponse.class; public Object getResponseType() { return responseType; } } public static class CRMActivityPartiesInfoResponse { public ResponseStatus responseStatus = null; public Integer count = null; public Integer lowest_version_number = null; public Integer highest_version_number = null; public ResponseStatus getResponseStatus() { return responseStatus; } public CRMActivityPartiesInfoResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getCount() { return count; } public CRMActivityPartiesInfoResponse setCount(Integer value) { this.count = value; return this; } public Integer getLowestVersionNumber() { return lowest_version_number; } public CRMActivityPartiesInfoResponse setLowestVersionNumber(Integer value) { this.lowest_version_number = value; return this; } public Integer getHighestVersionNumber() { return highest_version_number; } public CRMActivityPartiesInfoResponse setHighestVersionNumber(Integer value) { this.highest_version_number = value; return this; } } }