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

# FundLifecycleStatus

```ts theme={null}
type FundLifecycleStatus = 
  | {
  statusName: "init";
  statusData: null;
}
  | {
  statusName: "exit";
  statusData: null;
}
  | {
  statusName: "error";
  statusData: OnrampError;
}
  | {
  statusName: "transactionSubmitted";
  statusData: null;
}
  | {
  statusName: "transactionSuccess";
  statusData:   | OnrampSuccessEventData
     | null;
}
  | {
  statusName: "transactionPending";
  statusData: null;
};
```

The lifecycle statuses of the Fund component.
