squareup 2.13.0

Rust SDK for the Square Developer API
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Model struct for BulkUpsertCustomerCustomAttributesRequest type

use super::BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest;
use serde::{Deserialize, Serialize};

/// Represents a request for the BulkUpsertCustomerCustomAttributes endpoint.
#[derive(Clone, Debug, Serialize, Deserialize, Eq, PartialEq)]
pub struct BulkUpsertCustomerCustomAttributesRequest {
    /// A list of 1 to 25 individual upsert requests.
    pub values: Vec<BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest>,
}