# ConnectivityResult

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ConnectivityResult:
      type: object
      description: >-
        The result of a ping or connectivity test against a specific Lightning
        node endpoint.
      properties:
        success:
          type: boolean
          description: True if the test logic successfully executed.
        reachable:
          type: boolean
          description: >-
            True if the target node actually responded to the connection
            attempt.
        latencyMs:
          type: integer
          description: Estimated round-trip time in milliseconds.
          examples:
            - 150
        message:
          type: string
          description: >-
            A human-readable result message or technical error detail from the
            probe.
      required:
        - success
        - reachable
        - latencyMs
        - message
      x-apidog-orders:
        - success
        - reachable
        - latencyMs
        - message
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://tunnelsats.com
    description: Prod Env
security: []

```