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

com.twilio.rest.Domains Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
/**
 * This code was generated by
 * \ / _    _  _|   _  _
 *  | (_)\/(_)(_|\/| |(/_  v1.0.0
 *       /       /
 */

package com.twilio.rest;

public enum Domains {
    ACCOUNTS("accounts"),
    API("api"),
    AUTOPILOT("autopilot"),
    CHAT("chat"),
    CONVERSATIONS("conversations"),
    EVENTS("events"),
    FAX("fax"),
    FLEXAPI("flex-api"),
    INSIGHTS("insights"),
    IPMESSAGING("chat"),
    LOOKUPS("lookups"),
    MESSAGING("messaging"),
    MONITOR("monitor"),
    NOTIFY("notify"),
    NUMBERS("numbers"),
    PREVIEW("preview"),
    PRICING("pricing"),
    PROXY("proxy"),
    SERVERLESS("serverless"),
    STUDIO("studio"),
    SYNC("sync"),
    TASKROUTER("taskrouter"),
    TRUNKING("trunking"),
    VERIFY("verify"),
    VIDEO("video"),
    VOICE("voice"),
    WIRELESS("wireless"),
    SUPERSIM("supersim"),
    BULKEXPORTS("bulkexports");

    private final String value;

    private Domains(final String value) {
        this.value = value;
    }

    public String toString() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy