From eb7698901d512b4e8faab72819b7a4b5bf750fc9 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Sun, 5 May 2019 13:14:58 -0700 Subject: [PATCH] Allow listing charges by PaymentIntent id --- charge.go | 1 + 1 file changed, 1 insertion(+) diff --git a/charge.go b/charge.go index aeff931cc5..4114b4ba9d 100644 --- a/charge.go +++ b/charge.go @@ -132,6 +132,7 @@ type ChargeListParams struct { Created *int64 `form:"created"` CreatedRange *RangeQueryParams `form:"created"` Customer *string `form:"customer"` + PaymentIntent *string `form:"payment_intent"` TransferGroup *string `form:"transfer_group"` }