feat(payouts): Add Wallet to Payouts (#3502)

This commit is contained in:
Sakil Mostak
2024-02-07 12:21:57 +05:30
committed by GitHub
parent 7be86ecb33
commit 3af6aaf28e
23 changed files with 427 additions and 102 deletions

View File

@ -1649,7 +1649,11 @@ pub struct WeChatPayQr {}
pub struct CashappQr {}
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
pub struct PaypalRedirection {}
pub struct PaypalRedirection {
/// paypal's email address
#[schema(max_length = 255, value_type = Option<String>, example = "johntest@test.com")]
pub email: Option<Email>,
}
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
pub struct AliPayQr {}