squareup 2.13.0

Rust SDK for the Square Developer API
Documentation
//! Model for ApplicationDetailsExternalSquareProduct enum.

use serde::{Deserialize, Serialize};

/// A list of products to return to external callers.
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ApplicationDetailsExternalSquareProduct {
    Appointments,
    EcommerceApi,
    Invoices,
    OnlineStore,
    Other,
    Restaurants,
    Retail,
    SquarePos,
    TerminalApi,
    VirtualTerminal,
}