use serde::{Deserialize, Serialize};
use serde_json::Value;
/// Attributes List
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq)]
pub struct AttributeList {
/// Total number of attributes in the given collection.
pub total: u64,
/// List of attributes.
pub attributes: Vec<Value>,
}