@@ -38,7 +38,6 @@ pub struct Authentication {
38
38
pub challenge_request : Option < String > ,
39
39
pub acs_reference_number : Option < String > ,
40
40
pub acs_trans_id : Option < String > ,
41
- pub three_ds_server_trans_id : Option < String > ,
42
41
pub acs_signed_content : Option < String > ,
43
42
pub profile_id : String ,
44
43
pub payment_id : Option < String > ,
@@ -83,7 +82,6 @@ pub struct AuthenticationNew {
83
82
pub challenge_request : Option < String > ,
84
83
pub acs_reference_number : Option < String > ,
85
84
pub acs_trans_id : Option < String > ,
86
- pub three_dsserver_trans_id : Option < String > ,
87
85
pub acs_signed_content : Option < String > ,
88
86
pub profile_id : String ,
89
87
pub payment_id : Option < String > ,
@@ -160,7 +158,6 @@ pub struct AuthenticationUpdateInternal {
160
158
pub challenge_request : Option < String > ,
161
159
pub acs_reference_number : Option < String > ,
162
160
pub acs_trans_id : Option < String > ,
163
- pub three_dsserver_trans_id : Option < String > ,
164
161
pub acs_signed_content : Option < String > ,
165
162
}
166
163
@@ -191,7 +188,6 @@ impl Default for AuthenticationUpdateInternal {
191
188
challenge_request : Default :: default ( ) ,
192
189
acs_reference_number : Default :: default ( ) ,
193
190
acs_trans_id : Default :: default ( ) ,
194
- three_dsserver_trans_id : Default :: default ( ) ,
195
191
acs_signed_content : Default :: default ( ) ,
196
192
}
197
193
}
@@ -224,7 +220,6 @@ impl AuthenticationUpdateInternal {
224
220
challenge_request,
225
221
acs_reference_number,
226
222
acs_trans_id,
227
- three_dsserver_trans_id,
228
223
acs_signed_content,
229
224
} = self ;
230
225
Authentication {
@@ -256,7 +251,6 @@ impl AuthenticationUpdateInternal {
256
251
challenge_request : challenge_request. or ( source. challenge_request ) ,
257
252
acs_reference_number : acs_reference_number. or ( source. acs_reference_number ) ,
258
253
acs_trans_id : acs_trans_id. or ( source. acs_trans_id ) ,
259
- three_ds_server_trans_id : three_dsserver_trans_id. or ( source. three_ds_server_trans_id ) ,
260
254
acs_signed_content : acs_signed_content. or ( source. acs_signed_content ) ,
261
255
..source
262
256
}
0 commit comments