btcpay_client/models/webhook_data_all_of.rs
1/*
2 * BTCPay Greenfield API
3 *
4 * A full API to use your BTCPay Server
5 *
6 * The version of the OpenAPI document: v1
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct WebhookDataAllOf {
16 /// The id of the webhook
17 #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
18 pub id: Option<String>,
19}
20
21impl WebhookDataAllOf {
22 pub fn new() -> WebhookDataAllOf {
23 WebhookDataAllOf {
24 id: None,
25 }
26 }
27}
28
29