io.paymenthighway.model.response.transaction.DebitTransactionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paymenthighway Show documentation
Show all versions of paymenthighway Show documentation
Payment Highway Java API Library
package io.paymenthighway.model.response.transaction;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.paymenthighway.model.response.TransactionResponse;
public class DebitTransactionResponse extends TransactionResponse {
@JsonProperty("filing_code")
private String filingCode;
public String getFilingCode() {
return filingCode;
}
}