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

com.twilio.twiml.GenericNode Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
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