squareup 2.13.0

Rust SDK for the Square Developer API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model struct for CatalogEcomSeoData type.

use serde::{Deserialize, Serialize};

/// The SEO data for a seller's Square Online store.
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
pub struct CatalogEcomSeoData {
    /// The SEO title used for the Square Online store.
    pub page_title: Option<String>,
    /// The SEO description used for the Square Online store.
    pub page_description: Option<String>,
    /// The SEO permalink used for the Square Online store.
    pub permalink: Option<String>,
}