useserde::{Serialize, Deserialize};usecrate::i18n::I18n;// Tag is the tag and category resource.
#[derive(Debug, Serialize, Deserialize)]pubstructTag{// Link to the category page on the Ulule website
pubabsolute_url: String,
// Parent category, only present in the list-tags endpoint
pubcategory:Option<Box<Tag>>,
// Unique ID of the tag
pubid:u64,
// Name of the tag
pubname: I18n,
// Position
pubposition:u64,
// Slug
pubslug: String,
}