/* (non-Javadoc)
* @see com.twilio.sdk.resource.factory.DomainFactory#create(java.util.List)
*/
public Domain create(List<NameValuePair> params) throws TwilioRestException {
TwilioRestResponse response = this.getClient().safeRequest(
this.getResourceLocation(), "POST", params);
return makeNew(this.getClient(), response.toMap());
}