squareup/models/catalog_ecom_seo_data.rs
1//! Model struct for CatalogEcomSeoData type.
2
3use serde::{Deserialize, Serialize};
4
5/// The SEO data for a seller's Square Online store.
6#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
7pub struct CatalogEcomSeoData {
8 /// The SEO title used for the Square Online store.
9 pub page_title: Option<String>,
10 /// The SEO description used for the Square Online store.
11 pub page_description: Option<String>,
12 /// The SEO permalink used for the Square Online store.
13 pub permalink: Option<String>,
14}