1//! Sitemaps API types.
23use crate::types::Sitemap;
4use serde::{Deserialize, Serialize};
56/// Response from the Sitemaps list API.
7#[derive(Default, Debug, Serialize, Deserialize)]
8pub struct ResponseSitemapApiList {
9/// List of sitemaps for the site.
10pub sitemap: Vec<Sitemap>,
11}