コード例 #1
0
 /**
  * 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"));
   }
 }
コード例 #2
0
 /**
  * Retrieves the DepositTypeObjectDataList that results from the DepositTypeFindRequest call
  *
  * @return DepositTypeObjectDataList resulting from udt call
  */
 public DepositTypeObjectDataList getOutput() {
   return DepositTypeObjectHelper.fromMapList(outputMap, "DepositTypeList");
 }