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