mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 21:07:58 +08:00
feat(business_profile): introduce domain models for business profile v1 and v2 APIs (#5497)
This commit is contained in:
@ -3054,3 +3054,24 @@ pub enum PayoutRetryType {
|
||||
SingleConnector,
|
||||
MultiConnector,
|
||||
}
|
||||
|
||||
#[derive(
|
||||
Clone,
|
||||
Copy,
|
||||
Debug,
|
||||
Eq,
|
||||
PartialEq,
|
||||
serde::Deserialize,
|
||||
serde::Serialize,
|
||||
strum::Display,
|
||||
strum::EnumString,
|
||||
ToSchema,
|
||||
Hash,
|
||||
)]
|
||||
#[router_derive::diesel_enum(storage_type = "db_enum")]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
#[strum(serialize_all = "snake_case")]
|
||||
pub enum OrderFulfillmentTimeOrigin {
|
||||
Create,
|
||||
Confirm,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user