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
//! Model for RegisterDomainResponseStatus enum

use serde::Deserialize;

/// The status of the domain registration.
#[derive(Clone, Debug, Deserialize, Eq, PartialEq)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum RegisterDomainResponseStatus {
    /// The domain is added, but not verified.
    Pending,
    /// The domain is added and verified. It can be used to accept Apple Pay transactions.
    Verified,
}