mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(customer_v2): Add customer V2 delete api (#5518)
Co-authored-by: Narayan Bhat <narayan.bhat@juspay.in> Co-authored-by: hrithikesh026 <hrithikesh.vm@juspay.in> Co-authored-by: Prajjwal Kumar <prajjwal.kumar@juspay.in> Co-authored-by: Sanchith Hegde <sanchith.hegde@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Sahkal Poddar <sahkalpoddar@Sahkals-MacBook-Air.local>
This commit is contained in:
@ -10,11 +10,11 @@ pub mod diesel_exports {
|
||||
DbAuthenticationType as AuthenticationType, DbBlocklistDataKind as BlocklistDataKind,
|
||||
DbCaptureMethod as CaptureMethod, DbCaptureStatus as CaptureStatus,
|
||||
DbConnectorType as ConnectorType, DbCountryAlpha2 as CountryAlpha2, DbCurrency as Currency,
|
||||
DbDisputeStage as DisputeStage, DbDisputeStatus as DisputeStatus, DbEventType as EventType,
|
||||
DbFraudCheckStatus as FraudCheckStatus, DbFutureUsage as FutureUsage,
|
||||
DbIntentStatus as IntentStatus, DbMandateStatus as MandateStatus,
|
||||
DbPaymentMethodIssuerCode as PaymentMethodIssuerCode, DbPaymentType as PaymentType,
|
||||
DbRefundStatus as RefundStatus,
|
||||
DbDeleteStatus as DeleteStatus, DbDisputeStage as DisputeStage,
|
||||
DbDisputeStatus as DisputeStatus, DbFraudCheckStatus as FraudCheckStatus,
|
||||
DbFutureUsage as FutureUsage, DbIntentStatus as IntentStatus,
|
||||
DbMandateStatus as MandateStatus, DbPaymentMethodIssuerCode as PaymentMethodIssuerCode,
|
||||
DbPaymentType as PaymentType, DbRefundStatus as RefundStatus,
|
||||
DbRequestIncrementalAuthorization as RequestIncrementalAuthorization,
|
||||
DbWebhookDeliveryAttempt as WebhookDeliveryAttempt,
|
||||
};
|
||||
@ -3135,3 +3135,23 @@ pub enum OrderFulfillmentTimeOrigin {
|
||||
Create,
|
||||
Confirm,
|
||||
}
|
||||
|
||||
#[derive(
|
||||
Clone,
|
||||
Copy,
|
||||
Debug,
|
||||
Eq,
|
||||
PartialEq,
|
||||
serde::Deserialize,
|
||||
serde::Serialize,
|
||||
strum::Display,
|
||||
strum::EnumString,
|
||||
ToSchema,
|
||||
)]
|
||||
#[router_derive::diesel_enum(storage_type = "db_enum")]
|
||||
#[strum(serialize_all = "snake_case")]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum DeleteStatus {
|
||||
Active,
|
||||
Redacted,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user