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

com.bandwidth.iris.sdk.model.Aeui Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package com.bandwidth.iris.sdk.model;

import com.bandwidth.iris.sdk.IrisClient;
import com.bandwidth.iris.sdk.IrisPath;

import java.util.Map;

public class Aeui {

    public static AlternateEndUserIdentifiersResponse list(IrisClient client, Map query) throws Exception {
        return client.get(client.buildAccountModelUri(
                new String[] { IrisPath.AEUI }, query), AlternateEndUserIdentifiersResponse.class);
    }

    public static AlternateEndUserIdentifierResponse get(IrisClient client, String id) throws Exception {
        return client.get(client.buildAccountModelUri(
                new String[] { IrisPath.AEUI, id }), AlternateEndUserIdentifierResponse.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy