use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhooksMarketplacePurchaseAccount {
#[serde(rename = "id")]
pub id: i32,
#[serde(rename = "login")]
pub login: String,
#[serde(rename = "node_id")]
pub node_id: String,
#[serde(rename = "organization_billing_email", deserialize_with = "Option::deserialize")]
pub organization_billing_email: Option<String>,
#[serde(rename = "type")]
pub r#type: String,
}
impl WebhooksMarketplacePurchaseAccount {
pub fn new(id: i32, login: String, node_id: String, organization_billing_email: Option<String>, r#type: String) -> WebhooksMarketplacePurchaseAccount {
WebhooksMarketplacePurchaseAccount {
id,
login,
node_id,
organization_billing_email,
r#type,
}
}
}