mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 10:06:32 +08:00 
			
		
		
		
	 8678f8d144
			
		
	
	8678f8d144
	
	
	
		
			
			Co-authored-by: Kashif <mohammed.kashif@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			478 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			478 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use common_utils::pii;
 | |
| use masking::Secret;
 | |
| 
 | |
| use crate::enums;
 | |
| 
 | |
| #[derive(serde::Deserialize, Debug, serde::Serialize)]
 | |
| pub struct ReconUpdateMerchantRequest {
 | |
|     pub merchant_id: String,
 | |
|     pub recon_status: enums::ReconStatus,
 | |
|     pub user_email: pii::Email,
 | |
| }
 | |
| 
 | |
| #[derive(Debug, serde::Serialize)]
 | |
| pub struct ReconTokenResponse {
 | |
|     pub token: Secret<String>,
 | |
| }
 | |
| 
 | |
| #[derive(Debug, serde::Serialize)]
 | |
| pub struct ReconStatusResponse {
 | |
|     pub recon_status: enums::ReconStatus,
 | |
| }
 |