***

title: "RefundProcess"
generated: true
---------------

<GenerationInfo sourceFile="packages/core/src/config/refund/refund-process.ts" sourceLine="25" packageName="@vendure/core" />

A RefundProcess is used to define the way the refund process works as in: what states a Refund can be
in, and how it may transition from one state to another. Using the `onTransitionStart()` hook, a
RefundProcess can perform checks before allowing a state transition to occur, and the `onTransitionEnd()`
hook allows logic to be executed after a state change.

For detailed description of the interface members, see the [StateMachineConfig](/current/core/reference/typescript-api/state-machine/state-machine-config#statemachineconfig) docs.

```ts title="Signature"
interface RefundProcess<State extends keyof CustomRefundStates | string> extends InjectableStrategy {
    transitions?: Transitions<State, State | RefundState> & Partial<Transitions<RefundState | State>>;
    onTransitionStart?: OnTransitionStartFn<State | RefundState, RefundTransitionData>;
    onTransitionEnd?: OnTransitionEndFn<State | RefundState, RefundTransitionData>;
    onTransitionError?: OnTransitionErrorFn<State | RefundState>;
}
```

* Extends: [`InjectableStrategy`](/current/core/reference/typescript-api/common/injectable-strategy#injectablestrategy)

<div className="members-wrapper">

### transitions

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/state-machine/transitions#transitions'>Transitions</a><State, State | <a href='/current/core/reference/typescript-api/payment/refund-state#refundstate'>RefundState</a>> &#38; Partial<<a href='/current/core/reference/typescript-api/state-machine/transitions#transitions'>Transitions</a><<a href='/current/core/reference/typescript-api/payment/refund-state#refundstate'>RefundState</a> | State>>`}   />

### onTransitionStart

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/state-machine/state-machine-config#ontransitionstartfn'>OnTransitionStartFn</a><State | <a href='/current/core/reference/typescript-api/payment/refund-state#refundstate'>RefundState</a>, <a href='/current/core/reference/typescript-api/payment/refund-transition-data#refundtransitiondata'>RefundTransitionData</a>>`}   />

### onTransitionEnd

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/state-machine/state-machine-config#ontransitionendfn'>OnTransitionEndFn</a><State | <a href='/current/core/reference/typescript-api/payment/refund-state#refundstate'>RefundState</a>, <a href='/current/core/reference/typescript-api/payment/refund-transition-data#refundtransitiondata'>RefundTransitionData</a>>`}   />

### onTransitionError

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/state-machine/state-machine-config#ontransitionerrorfn'>OnTransitionErrorFn</a><State | <a href='/current/core/reference/typescript-api/payment/refund-state#refundstate'>RefundState</a>>`}   />

</div>
