liff_line/models/
add_liff_app_response.rs

1/*
2 * LIFF server API
3 *
4 * LIFF Server API.
5 *
6 * The version of the OpenAPI document: 1.0.0
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 AddLiffAppResponse {
16    #[serde(rename = "liffId")]
17    pub liff_id: String,
18}
19
20impl AddLiffAppResponse {
21    pub fn new(liff_id: String) -> AddLiffAppResponse {
22        AddLiffAppResponse {
23            liff_id,
24        }
25    }
26}
27