Skip to content

Commit

Permalink
Fix payment methods flow type (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko authored May 27, 2024
1 parent 7f46302 commit dd6ea77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions payments/sessions/sessions.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ type (
ProcessingChannelId string `json:"processing_channel_id,omitempty"`
ExpiresOn *time.Time `json:"expires_on,omitempty"`
PaymentMethodConfiguration *PaymentMethodConfiguration `json:"payment_method_configuration,omitempty"`
EnabledPaymentMethods PaymentMethodsType `json:"enabled_payment_methods,omitempty"`
DisabledPaymentMethods PaymentMethodsType `json:"disabled_payment_methods,omitempty"`
EnabledPaymentMethods []PaymentMethodsType `json:"enabled_payment_methods,omitempty"`
DisabledPaymentMethods []PaymentMethodsType `json:"disabled_payment_methods,omitempty"`
Items []payments.Product `json:"items,omitempty"`
AmountAllocations []common.AmountAllocations `json:"amount_allocations,omitempty"`
Risk *payments.RiskRequest `json:"risk,omitempty"`
Expand Down

0 comments on commit dd6ea77

Please sign in to comment.