messaging_api_line/models/
alt_uri.rs

1/*
2 * LINE Messaging API
3 *
4 * This document describes LINE Messaging API.
5 *
6 * The version of the OpenAPI document: 0.0.1
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AltUri {
16    #[serde(rename = "desktop", skip_serializing_if = "Option::is_none")]
17    pub desktop: Option<String>,
18}
19
20impl AltUri {
21    pub fn new() -> AltUri {
22        AltUri {
23            desktop: None,
24        }
25    }
26}
27