squareup 2.15.1

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

use std::collections::HashMap;

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: HashMap<String, BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest>,
}