---
title: NowPaymentsInvoice
sidebar_label: NowPaymentsInvoice
sidebar_position: 10
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lium.io/llms.txt
> Use this file to discover all available pages before exploring further.

<!-- Generated by scripts/generate_sdk_reference.py. Do not edit directly. -->

# NowPaymentsInvoice

```python
from lium.sdk import NowPaymentsInvoice
```

Defined in `lium.sdk.models`.

NowPayments invoice payment instructions.

```python
NowPaymentsInvoice(
    invoice_url: str,
    invoice_id: str,
    transaction_id: str,
    target_address: str,
    target_currency: str,
    target_amount: float,
    payment_id: str,
    payment_status: str,
    payin_extra_id: Optional[str] = None,
    network: Optional[str] = None,
    expires_at: Optional[str] = None
)
```

## Fields

| Name | Type | Default |
| --- | --- | --- |
| `invoice_url` | str |  |
| `invoice_id` | str |  |
| `transaction_id` | str |  |
| `target_address` | str |  |
| `target_currency` | str |  |
| `target_amount` | float |  |
| `payment_id` | str |  |
| `payment_status` | str |  |
| `payin_extra_id` | Optional[str] | `None` |
| `network` | Optional[str] | `None` |
| `expires_at` | Optional[str] | `None` |
