square_api_client/models/enums/
register_domain_response_status.rs

1//! Model for RegisterDomainResponseStatus enum
2
3use serde::Deserialize;
4
5/// The status of the domain registration.
6#[derive(Clone, Debug, Deserialize, Eq, PartialEq)]
7#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
8pub enum RegisterDomainResponseStatus {
9    /// The domain is added, but not verified.
10    Pending,
11    /// The domain is added and verified. It can be used to accept Apple Pay transactions.
12    Verified,
13}