tunnels 0.1.0

Dev Tunnels SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/TunnelPortListResponse.cs

use crate::contracts::TunnelPort;
use serde::{Deserialize, Serialize};

// Data contract for response of a list tunnel ports call.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all(serialize = "camelCase", deserialize = "camelCase"))]
pub struct TunnelPortListResponse {
    // List of tunnels
    pub value: Vec<TunnelPort>,

    // Link to get next page of results
    pub next_link: Option<String>,
}