mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
fix(connectors): [BOA/CYBS] make avs code optional (#4898)
This commit is contained in:
@ -835,7 +835,7 @@ pub struct ClientRiskInformationRules {
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub struct Avs {
|
||||
code: String,
|
||||
code: Option<String>,
|
||||
code_raw: Option<String>,
|
||||
}
|
||||
|
||||
|
||||
@ -1766,7 +1766,7 @@ pub struct CardVerification {
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub struct Avs {
|
||||
code: String,
|
||||
code: Option<String>,
|
||||
code_raw: Option<String>,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user