
com.braintreegateway.SubscriptionDescriptorRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of braintree-java Show documentation
Show all versions of braintree-java Show documentation
Java Client Library for Braintree Payments Gateway
package com.braintreegateway;
public class SubscriptionDescriptorRequest extends DescriptorRequest {
private SubscriptionRequest parent;
public SubscriptionDescriptorRequest(SubscriptionRequest parent) {
this.parent = parent;
}
public SubscriptionDescriptorRequest name(String name) {
super.name(name);
return this;
}
public SubscriptionDescriptorRequest phone(String phone) {
super.phone(phone);
return this;
}
public SubscriptionDescriptorRequest url(String url) {
super.url(url);
return this;
}
public SubscriptionRequest done() {
return parent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy