## OrderPaymentMethod
The `order_payment_method` object describes a payment method used for an order.
```liquid
{%- comment -%} Show payment method details {%- endcomment -%}
{% for method in order.payment_methods %}
{{ method.title }} — {{ method.status }}
{% endfor %}
```
## type
Returns the type.
## title
Returns the title.
## status
Returns the status.
## is_paid
Returns true if this payment method status is paid.
## is_paid
Returns payment method [currency](/reference/liquid/objects/print/currency/)
## info
Returns additional information about the payment method.
## description
Returns payment method description.
## fee
Returns the payment fee.
## net_fee
Returns the payment fee without tax.
## tax
Returns the tax amount.
## rate
Returns the tax rate in decimals.
## rate_percentage
Returns the tax rate.
## paid_amount
Returns the paid amount.
## gift_card
If this payment method type if gift_card this returns information about the gift card used as a payment method.
Following properties are available:
- value
- code
- expires
- value_left
## metafields
Nested metafields by namespace and key, e.g. `product.metafields.custom.vip`.