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