All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.braintreegateway.TransactionIndustryRequest Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

public class TransactionIndustryRequest extends IndustryRequest {
    private TransactionRequest parent;

    public TransactionIndustryRequest(TransactionRequest parent) {
        this.parent = parent;
    }

    public TransactionIndustryRequest industryType(Transaction.IndustryType industryType) {
        super.industryType(industryType);
        return this;
    }

    public TransactionIndustryDataRequest data(String data) {
        super.data = new TransactionIndustryDataRequest(this);
        return super.data;
    }

    public TransactionRequest done() {
        return parent;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy