mattermost_client/openapi/models/
get_file_link_200_response.rs

1/*
2 * Mattermost API Reference
3 *
4 * There is also a work-in-progress [Postman API reference](https://documenter.getpostman.com/view/4508214/RW8FERUn).
5 *
6 * The version of the OpenAPI document: 4.0.0
7 * Contact: feedback@mattermost.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Default, serde::Serialize, serde::Deserialize)]
12pub struct GetFileLink200Response {
13    #[serde(rename = "link", skip_serializing_if = "Option::is_none")]
14    pub link: Option<String>,
15}
16
17impl GetFileLink200Response {
18    pub fn new() -> GetFileLink200Response {
19        GetFileLink200Response { link: None }
20    }
21}