gitea_client/models/
issue_config_contact_link.rs

1/*
2 * Gitea API
3 *
4 * This documentation describes the Gitea API.
5 *
6 * The version of the OpenAPI document: 1.22.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 IssueConfigContactLink {
16    #[serde(rename = "about", skip_serializing_if = "Option::is_none")]
17    pub about: Option<String>,
18    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
19    pub name: Option<String>,
20    #[serde(rename = "url", skip_serializing_if = "Option::is_none")]
21    pub url: Option<String>,
22}
23
24impl IssueConfigContactLink {
25    pub fn new() -> IssueConfigContactLink {
26        IssueConfigContactLink {
27            about: None,
28            name: None,
29            url: None,
30        }
31    }
32}
33