square_api_client/models/retrieve_inventory_physical_count.rs
1//! Response struct for the RetrieveInventoryPhysicalCount API
2
3use serde::Deserialize;
4
5use super::{errors::Error, InventoryPhysicalCount};
6
7/// This is a model struct for RetrieveInventoryPhysicalCount type.
8#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq)]
9pub struct RetrieveInventoryPhysicalCount {
10 /// The requested InventoryPhysicalCount.
11 pub count: Option<InventoryPhysicalCount>,
12 /// Any errors that occurred during the request.
13 pub errors: Option<Vec<Error>>,
14}