square_api_client/models/
catalog_query_text.rs

1//! Model struct for CatalogQueryText type.
2
3use serde::Serialize;
4
5/// The query filter to return the search result whose searchable attribute values contain all of
6/// the specified keywords or tokens, independent of the token order or case.
7#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
8pub struct CatalogQueryText {
9    /// A list of 1, 2, or 3 search keywords. Keywords with fewer than 3 characters are ignored.
10    pub keywords: Vec<String>,
11}