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