use crate::options::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetIncomeAsynV1Resp {
#[serde(rename = "avgCostTimestampOfLast30d", skip_serializing_if = "Option::is_none")]
pub avg_cost_timestamp_of_last30d: Option<i32>,
#[serde(rename = "downloadId", skip_serializing_if = "Option::is_none")]
pub download_id: Option<String>,
}
impl GetIncomeAsynV1Resp {
pub fn new() -> GetIncomeAsynV1Resp {
GetIncomeAsynV1Resp {
avg_cost_timestamp_of_last30d: None,
download_id: None,
}
}
}