square_api_client/models/
update_customer_response.rs

1//! Model struct for UpdateCustomerResponse type
2
3use serde::Deserialize;
4
5use super::{errors::Error, Customer};
6
7/// This is a model struct for UpdateCustomerResponse type.
8#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq)]
9pub struct UpdateCustomerResponse {
10    /// The updated customer.
11    pub customer: Customer,
12    /// Any errors that occurred during the request.
13    pub errors: Option<Vec<Error>>,
14}