squareup 2.15.1

Rust SDK for the Square Developer API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Model for CardIssuerAlert enum

use serde::{Deserialize, Serialize};

/// Indicates the type of issuer alert for a card on file
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum CardIssuerAlert {
    /// The underlying account of the card was closed, which is a strong signal that future charges
    /// to the card are likely to fail.
    IssuerAlertCardClosed,
}