# InvoiceOrder

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    InvoiceOrder:
      type: object
      required:
        - invoice
        - paymentHash
        - amountSats
        - orderId
      properties:
        invoice:
          type: string
          description: BOLT11 encoded Lightning Network invoice.
        paymentHash:
          type: string
          description: SHA-256 hash representing the invoice.
        amountSats:
          type: integer
          description: Amount in Satoshis.
        orderId:
          type: string
          format: uuid
          description: TunnelSats internal UUID.
      x-apidog-orders:
        - invoice
        - paymentHash
        - amountSats
        - orderId
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://tunnelsats.com
    description: Prod Env
security: []

```