use crate::wallet::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WalletGetAssetDribbletV1Resp {
#[serde(rename = "total", skip_serializing_if = "Option::is_none")]
pub total: Option<i32>,
#[serde(rename = "userAssetDribblets", skip_serializing_if = "Option::is_none")]
pub user_asset_dribblets: Option<Vec<models::WalletGetAssetDribbletV1RespUserAssetDribbletsInner>>,
}
impl WalletGetAssetDribbletV1Resp {
pub fn new() -> WalletGetAssetDribbletV1Resp {
WalletGetAssetDribbletV1Resp {
total: None,
user_asset_dribblets: None,
}
}
}