mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 17:47:54 +08:00
17 lines
366 B
Rust
17 lines
366 B
Rust
pub struct EphemeralKeyNew {
|
|
pub id: String,
|
|
pub merchant_id: String,
|
|
pub customer_id: String,
|
|
pub secret: String,
|
|
}
|
|
|
|
#[derive(Debug, serde::Serialize, serde::Deserialize)]
|
|
pub struct EphemeralKey {
|
|
pub id: String,
|
|
pub merchant_id: String,
|
|
pub customer_id: String,
|
|
pub created_at: i64,
|
|
pub expires: i64,
|
|
pub secret: String,
|
|
}
|