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 BusinessBookingProfileCustomerTimezoneChoice type.

use serde::{Deserialize, Serialize};

/// The choice of customer's time zone information of a booking
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum BusinessBookingProfileCustomerTimezoneChoice {
    /// Use the time zone of the business location for bookings.
    BusinessLocationTimezone,
    /// Use the customer-chosen time zone for bookings.
    CustomerChoice,
}