mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 17:47:54 +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)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct Avs {
|
pub struct Avs {
|
||||||
code: String,
|
code: Option<String>,
|
||||||
code_raw: Option<String>,
|
code_raw: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1766,7 +1766,7 @@ pub struct CardVerification {
|
|||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct Avs {
|
pub struct Avs {
|
||||||
code: String,
|
code: Option<String>,
|
||||||
code_raw: Option<String>,
|
code_raw: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user