
# ExitError


## Properties

Name | Type
------------ | -------------
`error` | string
`txid` | string
`type` | string
`height` | number
`state` | [ExitStateKind](ExitStateKind.md)
`vtxo` | string
`needed` | number
`output` | number
`vtxoId` | string
`dust` | number
`available` | number
`status` | [ExitTxStatus](ExitTxStatus.md)
`tip` | number

## Example

```typescript
import type { ExitError } from '@secondts/barkd'

// TODO: Update the object below with actual values
const example = {
  "error": null,
  "txid": null,
  "type": null,
  "height": null,
  "state": null,
  "vtxo": null,
  "needed": null,
  "output": null,
  "vtxoId": null,
  "dust": null,
  "available": null,
  "status": null,
  "tip": null,
} satisfies ExitError

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as ExitError
console.log(exampleParsed)
```

[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)


