mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
fix(users): Added merchant name is list merchants (#3289)
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
use common_utils::pii;
|
||||
use common_utils::{crypto::OptionalEncryptableName, pii};
|
||||
use masking::Secret;
|
||||
|
||||
use crate::user_role::UserStatus;
|
||||
@ -133,3 +133,9 @@ pub type VerifyEmailResponse = DashboardEntryResponse;
|
||||
pub struct SendVerifyEmailRequest {
|
||||
pub email: pii::Email,
|
||||
}
|
||||
|
||||
#[derive(Debug, serde::Serialize)]
|
||||
pub struct UserMerchantAccount {
|
||||
pub merchant_id: String,
|
||||
pub merchant_name: OptionalEncryptableName,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user