mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
Co-authored-by: Sangamesh <sangamesh.kulkarni@juspay.in> Co-authored-by: sai harsha <sai.harsha@sai.harsha-MacBookPro> Co-authored-by: Arun Raj M <jarnura47@gmail.com>
8 lines
158 B
Rust
8 lines
158 B
Rust
use utoipa::ToSchema;
|
|
|
|
#[derive(Debug, serde::Serialize, ToSchema)]
|
|
pub struct CreateFileResponse {
|
|
/// ID of the file created
|
|
pub file_id: String,
|
|
}
|