/** * Constructor to create a DepositTypeFindRequest * * @param id Unique request name * @param DTFindIn DepositTypeObjectFilter for DepositTypeFindRequest */ @JsonCreator public DepositTypeFindRequest( @JsonProperty("RequestId") String id, @JsonProperty("DepositType") DepositTypeObjectFilter DTFindIn) { super(id, "DepositTypeFind"); if (DTFindIn != null) { Integer index = DTFindIn.getIndex(); if (index != null) addInput("Index", index); addInput( "DepositType", DepositTypeObjectHelper.toMap(DTFindIn, new HashMap(), "DepositType").get("DepositType")); } }
/** * Retrieves the DepositTypeObjectDataList that results from the DepositTypeFindRequest call * * @return DepositTypeObjectDataList resulting from udt call */ public DepositTypeObjectDataList getOutput() { return DepositTypeObjectHelper.fromMapList(outputMap, "DepositTypeList"); }