mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-11-01 02:57:02 +08:00 
			
		
		
		
	feat(payouts): extend routing capabilities to payout operation (#3531)
Co-authored-by: Kashif <mohammed.kashif@juspay.in>
This commit is contained in:
		| @ -2168,6 +2168,29 @@ pub enum ConnectorStatus { | ||||
|     Active, | ||||
| } | ||||
|  | ||||
| #[derive( | ||||
|     Clone, | ||||
|     Copy, | ||||
|     Debug, | ||||
|     Eq, | ||||
|     PartialEq, | ||||
|     strum::Display, | ||||
|     strum::EnumString, | ||||
|     serde::Deserialize, | ||||
|     serde::Serialize, | ||||
|     ToSchema, | ||||
|     Default, | ||||
| )] | ||||
| #[router_derive::diesel_enum(storage_type = "db_enum")] | ||||
| #[strum(serialize_all = "snake_case")] | ||||
| #[serde(rename_all = "snake_case")] | ||||
| pub enum TransactionType { | ||||
|     #[default] | ||||
|     Payment, | ||||
|     #[cfg(feature = "payouts")] | ||||
|     Payout, | ||||
| } | ||||
|  | ||||
| #[derive( | ||||
|     Clone, | ||||
|     Copy, | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Kashif
					Kashif