com.github.alexdlaird.ngrok.protocol.Tunnels Maven / Gradle / Ivy
/*
* Copyright (c) 2021-2024 Alex Laird
*
* SPDX-License-Identifier: MIT
*/
package com.github.alexdlaird.ngrok.protocol;
import java.util.List;
/**
* An object representing a Tunnels response from ngrok
's API.
*/
public class Tunnels {
private List tunnels;
private String uri;
/**
* Get the list tunnels.
*/
public List getTunnels() {
return tunnels;
}
/**
* Get the URI.
*/
public String getUri() {
return uri;
}
}