io.electrum.moneytransfer.model.MoneyTransferConfirmation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of money-transfer-retailer-interface Show documentation
Show all versions of money-transfer-retailer-interface Show documentation
Money Transfer Retailer Interface
package io.electrum.moneytransfer.model;
import java.util.List;
import org.joda.time.DateTime;
import io.electrum.vas.Utils;
import io.electrum.vas.model.BasicAdvice;
import io.electrum.vas.model.ThirdPartyIdentifier;
import io.swagger.annotations.ApiModel;
/**
* An advice that notifies of the positive completion of a transaction.
*/
@ApiModel(description = "An advice that notifies of the positive completion of a transaction.")
public class MoneyTransferConfirmation extends BasicAdvice {
public MoneyTransferConfirmation id(String id) {
this.id = id;
return this;
}
public MoneyTransferConfirmation requestId(String requestId) {
this.requestId = requestId;
return this;
}
public MoneyTransferConfirmation time(DateTime time) {
this.time = time;
return this;
}
public MoneyTransferConfirmation thirdPartyIdentifiers(List thirdPartyIdentifiers) {
this.thirdPartyIdentifiers = thirdPartyIdentifiers;
return this;
}
public MoneyTransferConfirmation addThirdPartyIdentifiersItem(ThirdPartyIdentifier thirdPartyIdentifiersItem) {
this.thirdPartyIdentifiers.add(thirdPartyIdentifiersItem);
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MoneyTransferConfirmation {\n");
sb.append(" id: ").append(Utils.toIndentedString(id)).append("\n");
sb.append(" requestId: ").append(Utils.toIndentedString(requestId)).append("\n");
sb.append(" time: ").append(Utils.toIndentedString(time)).append("\n");
sb.append(" thirdPartyIdentifiers: ").append(Utils.toIndentedString(thirdPartyIdentifiers)).append("\n");
sb.append("}");
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy