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