/* Options: Date: 2026-08-01 04:00:32 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FundingSourceRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/projects/{ProjectID}/funding-source", Verbs="GET,OPTIONS") public static class FundingSourceRequest implements IReturn { public Integer ProjectID = null; public Integer getProjectID() { return ProjectID; } public FundingSourceRequest setProjectID(Integer value) { this.ProjectID = value; return this; } private static Object responseType = FundingSourceResponse.class; public Object getResponseType() { return responseType; } } public static class FundingSourceResponse { public ResponseStatus ResponseStatus = null; public Integer ProjectID = null; public String FundingSource = null; public Boolean FloorRequired = null; public Boolean MissingDetermination = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public FundingSourceResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Integer getProjectID() { return ProjectID; } public FundingSourceResponse setProjectID(Integer value) { this.ProjectID = value; return this; } public String getFundingSource() { return FundingSource; } public FundingSourceResponse setFundingSource(String value) { this.FundingSource = value; return this; } public Boolean isFloorRequired() { return FloorRequired; } public FundingSourceResponse setFloorRequired(Boolean value) { this.FloorRequired = value; return this; } public Boolean isMissingDetermination() { return MissingDetermination; } public FundingSourceResponse setMissingDetermination(Boolean value) { this.MissingDetermination = value; return this; } } }