15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
|
import { TunnelListByRegion } from './tunnelListByRegion';
|
||
|
/**
|
||
|
* Data contract for response of a list tunnel by region call.
|
||
|
*/
|
||
|
export interface TunnelListByRegionResponse {
|
||
|
/**
|
||
|
* List of tunnels
|
||
|
*/
|
||
|
value?: TunnelListByRegion[];
|
||
|
/**
|
||
|
* Link to get next page of results.
|
||
|
*/
|
||
|
nextLink?: string;
|
||
|
}
|
||
|
//# sourceMappingURL=tunnelListByRegionResponse.d.ts.map
|