mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
feat(business_profile_v2): business profile v2 create and retrieve endpoint (#5606)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Sanchith Hegde <sanchith.hegde@juspay.in>
This commit is contained in:
@ -77,6 +77,9 @@ pub const DEFAULT_SESSION_EXPIRY: i64 = 15 * 60;
|
||||
/// Payment intent fulfillment time (in seconds)
|
||||
pub const DEFAULT_INTENT_FULFILLMENT_TIME: i64 = 15 * 60;
|
||||
|
||||
/// Payment order fulfillment time (in seconds)
|
||||
pub const DEFAULT_ORDER_FULFILLMENT_TIME: i64 = 15 * 60;
|
||||
|
||||
/// Default bool for Display sdk only
|
||||
pub const DEFAULT_DISPLAY_SDK_ONLY: bool = false;
|
||||
|
||||
|
||||
@ -50,6 +50,9 @@ pub enum ParsingError {
|
||||
/// Failed to parse String value to Decimal value conversion because `error`
|
||||
#[error("Failed to parse String value to Decimal value conversion because {error}")]
|
||||
StringToDecimalConversionFailure { error: String },
|
||||
/// Failed to convert the given integer because of integer overflow error
|
||||
#[error("Integer Overflow error")]
|
||||
IntegerOverflow,
|
||||
}
|
||||
|
||||
/// Validation errors.
|
||||
|
||||
Reference in New Issue
Block a user