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

# AmountType

```ts theme={null}
const AmountType: {
  Source: "source";
  Target: "target";
};
```

Defined in: [\_vendor/api/resources/transfers/client/requests/TransferRequest.ts:98](https://github.com/coinbase/cdp-sdk/blob/30d1b3dc350cd763fecf481c5bc976bd77951f3b/typescript/packages/cdp-sdk/src/_vendor/api/resources/transfers/client/requests/TransferRequest.ts#L98)

Specifies whether the given amount is to be received by the target or taken from the source.

* `target`: The transfer `target` receives the exact value specified in `amount`. Fees are added to the amount taken from the transfer `source`.
* `source`: The transfer `target` receives the value specified in `amount`, minus any fees.

## Type Declaration

### Source

```ts theme={null}
readonly Source: "source" = "source";
```

### Target

```ts theme={null}
readonly Target: "target" = "target";
```
