![JAR search and dependency download from the Maven repository](/logo.png)
com.global.api.gateways.bill_pay.responses.TokenRequestResponse Maven / Gradle / Ivy
package com.global.api.gateways.bill_pay.responses;
import com.global.api.entities.Transaction;
public class TokenRequestResponse extends BillPayResponseBase {
public Transaction map() {
Transaction result = new Transaction();
result.setResponseCode(response.getString("a:ResponseCode"));
result.setResponseMessage(getFirstResponseMessage(response));
result.setToken(response.getString("a:Token"));
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy