fix(connectors): [BOA/CYBS] make avs code optional (#4898)

This commit is contained in:
AkshayaFoiger
2024-06-06 17:33:46 +05:30
committed by GitHub
parent c9dbb567ab
commit 3d9ecd0938
2 changed files with 2 additions and 2 deletions

View File

@ -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>,
}

View File

@ -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>,
}