fix typo in PaymentInstruction

This commit is contained in:
Alex Pliutau 2021-04-10 18:17:20 +02:00
parent ed294ef317
commit 41099f6b6e

View File

@ -555,10 +555,10 @@ type (
// PurchaseUnit struct // PurchaseUnit struct
PurchaseUnit struct { PurchaseUnit struct {
ReferenceID string `json:"reference_id"` ReferenceID string `json:"reference_id"`
Amount *PurchaseUnitAmount `json:"amount,omitempty"` Amount *PurchaseUnitAmount `json:"amount,omitempty"`
Payments *CapturedPayments `json:"payments,omitempty"` Payments *CapturedPayments `json:"payments,omitempty"`
Payment_Instruction *PaymentInstruction `json:"payment_instruction,omitempty"` PaymentInstruction *PaymentInstruction `json:"payment_instruction,omitempty"`
} }
// TaxInfo used for orders. // TaxInfo used for orders.