# RenewalOrder

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    RenewalOrder:
      type: object
      required:
        - invoice
        - paymentHash
        - oldExpiry
        - newExpiry
        - renewalId
      properties:
        invoice:
          type: string
        paymentHash:
          type: string
        oldExpiry:
          type: string
          format: date-time
        newExpiry:
          type: string
          format: date-time
        renewalId:
          type: string
          format: uuid
      x-apidog-orders:
        - invoice
        - paymentHash
        - oldExpiry
        - newExpiry
        - renewalId
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://tunnelsats.com
    description: Prod Env
security: []

```