com.twilio.twiml.GenericNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
package com.twilio.twiml;
public class GenericNode extends TwiML {
protected GenericNode(Builder builder) {
super(builder.tag, builder);
}
public static class Builder extends TwiML.Builder {
private String tag;
public Builder(String tag) {
this.tag = tag;
}
/**
* Create and return resulting {@code } element
*/
public GenericNode build() {
return new GenericNode(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy