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
14
//! Request body struct for the Retrieve Gift Card From GAN API

use serde::Serialize;

/// This is a model struct for RetrieveGiftCardFromGANRequest type
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
pub struct RetrieveGiftCardFromGANRequest {
    /// The gift card account number (GAN) of the gift card to retrieve. The maximum length of a GAN
    /// is 255 digits to account for third-party GANs that have been imported. Square-issued gift
    /// cards have 16-digit GANs.
    ///
    /// Min Length: 1, Max Length: 255
    pub gan: String,
}