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

# UserPayoutTransaction

```ts theme={"theme":"github-dark-high-contrast"}
export interface UserPayoutTransaction {
  amount: string;
  created: string;
  id: string;
  type: UserPayoutTypes;
  fee?: string | null;
  status?: UserPayoutStatus | null;
  method_address?: string | null;
  method_id?: string | null;
  payout_source?: string | null;
  method_type?: UserPayoutMethodTypes | null;
}
```

## Properties

<ResponseField name="amount" type="string" required />

<ResponseField name="created" type="string" required />

<ResponseField name="id" type="string" required />

<ResponseField name="type" type="UserPayoutTypes" required>Enum: [UserPayoutTypes](/reference/enum/UserPayoutTypes)</ResponseField>

<ResponseField name="fee" type="string | null" />

<ResponseField name="status" type="UserPayoutStatus | null">Enum: [UserPayoutStatus](/reference/enum/UserPayoutStatus)</ResponseField>

<ResponseField name="method_address" type="string | null" />

<ResponseField name="method_id" type="string | null" />

<ResponseField name="payout_source" type="string | null" />

<ResponseField name="method_type" type="UserPayoutMethodTypes | null">Enum: [UserPayoutMethodTypes](/reference/enum/UserPayoutMethodTypes)</ResponseField>
