/*
* BTCPay Greenfield API
*
* A full API to use your BTCPay Server
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct LabelData {
/// The type of label
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
pub _type: Option<String>,
/// Information about this label
#[serde(rename = "text", skip_serializing_if = "Option::is_none")]
pub text: Option<String>,
}
impl LabelData {
pub fn new() -> LabelData {
LabelData {
_type: None,
text: None,
}
}
}