add sale_id field to Refund struct (#238)

This commit is contained in:
Konnor Klashinsky 2022-06-18 20:04:53 +00:00 committed by GitHub
parent 48f8ee15ce
commit d94b350a31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -898,6 +898,7 @@ type (
CaptureID string `json:"capture_id,omitempty"` CaptureID string `json:"capture_id,omitempty"`
ParentPayment string `json:"parent_payment,omitempty"` ParentPayment string `json:"parent_payment,omitempty"`
UpdateTime *time.Time `json:"update_time,omitempty"` UpdateTime *time.Time `json:"update_time,omitempty"`
SaleID string `json:"sale_id,omitempty"`
} }
// RefundResponse . // RefundResponse .