square_api_client/models/link_customer_to_gift_card_request.rs
1//! The request body for the Link Customer To Gift Card API
2
3use serde::Serialize;
4
5/// This is a model struct for LinkCustomerToGiftCardRequest type
6#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
7pub struct LinkCustomerToGiftCardRequest {
8 /// The ID of the customer to link to the gift card.
9 ///
10 /// Min Length: 1, Max Length: 191
11 pub customer_id: String,
12}