mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
feat(users): add support for profile user delete (#5541)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -3085,6 +3085,8 @@ pub enum ApiVersion {
|
||||
Debug,
|
||||
Eq,
|
||||
PartialEq,
|
||||
Ord,
|
||||
PartialOrd,
|
||||
serde::Deserialize,
|
||||
serde::Serialize,
|
||||
strum::Display,
|
||||
@ -3095,10 +3097,10 @@ pub enum ApiVersion {
|
||||
#[strum(serialize_all = "snake_case")]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum EntityType {
|
||||
Internal,
|
||||
Organization,
|
||||
Merchant,
|
||||
Profile,
|
||||
Internal = 3,
|
||||
Organization = 2,
|
||||
Merchant = 1,
|
||||
Profile = 0,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, serde::Serialize)]
|
||||
|
||||
Reference in New Issue
Block a user