@@ -52,6 +52,7 @@ def create(
5252 network : Literal ["visa" ],
5353 amount : int | Omit = omit ,
5454 attachment_files : Iterable [card_dispute_create_params .AttachmentFile ] | Omit = omit ,
55+ explanation : str | Omit = omit ,
5556 visa : card_dispute_create_params .Visa | Omit = omit ,
5657 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5758 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -80,6 +81,9 @@ def create(
8081
8182 attachment_files: The files to be attached to the initial dispute submission.
8283
84+ explanation: The free-form explanation provided to Increase to provide more context for the
85+ user submission. This field is not sent directly to the card networks.
86+
8387 visa: The Visa-specific parameters for the dispute. Required if and only if `network`
8488 is `visa`.
8589
@@ -101,6 +105,7 @@ def create(
101105 "network" : network ,
102106 "amount" : amount ,
103107 "attachment_files" : attachment_files ,
108+ "explanation" : explanation ,
104109 "visa" : visa ,
105110 },
106111 card_dispute_create_params .CardDisputeCreateParams ,
@@ -216,6 +221,7 @@ def submit_user_submission(
216221 network : Literal ["visa" ],
217222 amount : int | Omit = omit ,
218223 attachment_files : Iterable [card_dispute_submit_user_submission_params .AttachmentFile ] | Omit = omit ,
224+ explanation : str | Omit = omit ,
219225 visa : card_dispute_submit_user_submission_params .Visa | Omit = omit ,
220226 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
221227 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -243,6 +249,9 @@ def submit_user_submission(
243249
244250 attachment_files: The files to be attached to the user submission.
245251
252+ explanation: The free-form explanation provided to Increase to provide more context for the
253+ user submission. This field is not sent directly to the card networks.
254+
246255 visa: The Visa-specific parameters for the dispute. Required if and only if `network`
247256 is `visa`.
248257
@@ -265,6 +274,7 @@ def submit_user_submission(
265274 "network" : network ,
266275 "amount" : amount ,
267276 "attachment_files" : attachment_files ,
277+ "explanation" : explanation ,
268278 "visa" : visa ,
269279 },
270280 card_dispute_submit_user_submission_params .CardDisputeSubmitUserSubmissionParams ,
@@ -349,6 +359,7 @@ async def create(
349359 network : Literal ["visa" ],
350360 amount : int | Omit = omit ,
351361 attachment_files : Iterable [card_dispute_create_params .AttachmentFile ] | Omit = omit ,
362+ explanation : str | Omit = omit ,
352363 visa : card_dispute_create_params .Visa | Omit = omit ,
353364 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
354365 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -377,6 +388,9 @@ async def create(
377388
378389 attachment_files: The files to be attached to the initial dispute submission.
379390
391+ explanation: The free-form explanation provided to Increase to provide more context for the
392+ user submission. This field is not sent directly to the card networks.
393+
380394 visa: The Visa-specific parameters for the dispute. Required if and only if `network`
381395 is `visa`.
382396
@@ -398,6 +412,7 @@ async def create(
398412 "network" : network ,
399413 "amount" : amount ,
400414 "attachment_files" : attachment_files ,
415+ "explanation" : explanation ,
401416 "visa" : visa ,
402417 },
403418 card_dispute_create_params .CardDisputeCreateParams ,
@@ -513,6 +528,7 @@ async def submit_user_submission(
513528 network : Literal ["visa" ],
514529 amount : int | Omit = omit ,
515530 attachment_files : Iterable [card_dispute_submit_user_submission_params .AttachmentFile ] | Omit = omit ,
531+ explanation : str | Omit = omit ,
516532 visa : card_dispute_submit_user_submission_params .Visa | Omit = omit ,
517533 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
518534 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -540,6 +556,9 @@ async def submit_user_submission(
540556
541557 attachment_files: The files to be attached to the user submission.
542558
559+ explanation: The free-form explanation provided to Increase to provide more context for the
560+ user submission. This field is not sent directly to the card networks.
561+
543562 visa: The Visa-specific parameters for the dispute. Required if and only if `network`
544563 is `visa`.
545564
@@ -562,6 +581,7 @@ async def submit_user_submission(
562581 "network" : network ,
563582 "amount" : amount ,
564583 "attachment_files" : attachment_files ,
584+ "explanation" : explanation ,
565585 "visa" : visa ,
566586 },
567587 card_dispute_submit_user_submission_params .CardDisputeSubmitUserSubmissionParams ,
0 commit comments