
com.mangopay.entities.subentities.PayInPaymentDetailsGiropay Maven / Gradle / Ivy
package com.mangopay.entities.subentities;
import com.google.gson.annotations.SerializedName;
import com.mangopay.core.Dto;
import com.mangopay.core.interfaces.PayInPaymentDetails;
/**
* Class representing the GIROPAY type for mean of payment in PayIn entity.
*/
public class PayInPaymentDetailsGiropay extends Dto implements PayInPaymentDetails {
/**
* An optional value to be specified on the user's bank statement
*/
@SerializedName("StatementDescriptor")
private String statementDescriptor;
public String getStatementDescriptor() {
return statementDescriptor;
}
public void setStatementDescriptor(String statementDescriptor) {
this.statementDescriptor = statementDescriptor;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy