com.bandwidth.iris.sdk.model.InserviceNumber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-java-iris-sdk Show documentation
Show all versions of bandwidth-java-iris-sdk Show documentation
Java SDK for use with the IRIS API.
package com.bandwidth.iris.sdk.model;
import com.bandwidth.iris.sdk.IrisClient;
import com.bandwidth.iris.sdk.IrisPath;
import java.util.Map;
public class InserviceNumber {
public static TNss list(IrisClient client, Map query) throws Exception {
return client.get(client.buildAccountModelUri(new String[] {
IrisPath.INSERVICE_NUMBERS_URI_PATH }, query), TNss.class);
}
}