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

com.plivo.api.models.powerpack.NumberPool Maven / Gradle / Ivy

Go to download

A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML

There is a newer version: 5.46.0
Show newest version
package com.plivo.api.models.powerpack;

import com.plivo.api.models.base.BaseResource;

public class NumberPool extends BaseResource {

  public Shortcode shortcodes;
  public Numbers numbers;
  private String uuid;
  public Tollfree tollfree;

  public NumberPool(String uuid) {
    this.uuid = uuid;
    shortcodes = new Shortcode(uuid);
    numbers = new Numbers(uuid);
    tollfree = new Tollfree(uuid);
  }

  public String getNumberPoolId() {
    return uuid;
  }

  @Override
  public String getId() {
    return getNumberPoolId();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy