squareup 2.13.0

Rust SDK for the Square Developer API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Request struct for the Batch Delete Catalog Objects API

use serde::Serialize;

/// This is a model class for BatchDeleteCatalogObjectsRequest type.
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
pub struct BatchDeleteCatalogObjectsRequest {
    /// The IDs of the CatalogObjects to be deleted. When an object is deleted, other objects in the
    /// graph that depend on that object will be deleted as well (for example, deleting a
    /// CatalogItem will delete its CatalogItemVariation.
    pub object_ids: Vec<String>,
}