google-search-console-api 0.2.0

Unofficial Rust client for Google Search Console API
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Sitemaps API types.

use crate::types::Sitemap;
use serde::{Deserialize, Serialize};

/// Response from the Sitemaps list API.
#[derive(Default, Debug, Serialize, Deserialize)]
pub struct ResponseSitemapApiList {
    /// List of sitemaps for the site.
    pub sitemap: Vec<Sitemap>,
}