/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
package com.twilio.rest;
public enum Domains {
ACCOUNTS("accounts"),
API("api"),
CHAT("chat"),
IPMESSAGING("chat"),
LOOKUPS("lookups"),
MONITOR("monitor"),
PRICING("pricing"),
TASKROUTER("taskrouter"),
TRUNKING("trunking");
private final String value;
private Domains(final String value) {
this.value = value;
}
public String toString() {
return value;
}
}