Package com.twilio.sdk.resource.instance

Examples of com.twilio.sdk.resource.instance.CallerIdValidation


   * @see com.twilio.sdk.resource.factory.OutgoingCallerIdFactory#create(java.util.Map)
   */
  public CallerIdValidation create(Map<String, String> params) throws TwilioRestException {
    TwilioRestResponse response = this.getClient().safeRequest(
        this.getResourceLocation(), "POST", params);
    return new CallerIdValidation(response);
  }
View Full Code Here


   * @see com.twilio.sdk.resource.factory.OutgoingCallerIdFactory#create(java.util.List)
   */
  public CallerIdValidation create(List<NameValuePair> params) throws TwilioRestException {
    TwilioRestResponse response = this.getClient().safeRequest(
        this.getResourceLocation(), "POST", params);
    return new CallerIdValidation(response);
  }
View Full Code Here

TOP

Related Classes of com.twilio.sdk.resource.instance.CallerIdValidation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.