square_api_client/models/cancel_payment_by_idempotency_key_request.rs
1//! Model struct for CancelPaymentByIdempotencyKeyRequest type.
2
3use serde::Serialize;
4
5/// This is a model struct for CancelPaymentByIdempotencyRequest type.
6#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
7pub struct CancelPaymentByIdempotencyKeyRequest {
8 /// The `idempotency_key` identifying the payment to be canceled.
9 pub idempotency_key: String,
10}