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
18
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/TunnelListByRegionResponse.cs

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

// Data contract for response of a list tunnel by region call.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all(serialize = "camelCase", deserialize = "camelCase"))]
pub struct TunnelListByRegionResponse {
    // List of tunnels
    #[serde(skip_serializing_if = "Vec::is_empty", default)]
    pub value: Vec<TunnelListByRegion>,

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