# TransfersCreditCreate

A transfer using the CREDIT mechanism. Funds are moved from a firm account to a customer's brokerage account

## Example Usage

```typescript
import { TransfersCreditCreate, TransfersCreditCreateType } from "@apexfintechsolutions/ascend-sdk/models/components";

let value: TransfersCreditCreate = {
  amount: {},
  clientTransferId: "179dcd33-49f8-4615-989c-560fb387c4fd",
  type: TransfersCreditCreateType.Promotional,
};
```

## Fields

| Field                                                                                                                                                                                                                                                                                                                                                         | Type                                                                                                                                                                                                                                                                                                                                                          | Required                                                                                                                                                                                                                                                                                                                                                      | Description                                                                                                                                                                                                                                                                                                                                                   | Example                                                                                                                                                                                                                                                                                                                                                       |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `amount`                                                                                                                                                                                                                                                                                                                                                      | [components.DecimalCreate](../../models/components/decimalcreate.md)                                                                                                                                                                                                                                                                                          | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                            | A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python's [decimal.Decimal][].<br/><br/> [BigDecimal]:<br/> https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html<br/> [decimal.Decimal]: https://docs.python.org/3/library/decimal.html |                                                                                                                                                                                                                                                                                                                                                               |
| `clientTransferId`                                                                                                                                                                                                                                                                                                                                            | *string*                                                                                                                                                                                                                                                                                                                                                      | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                            | External identifier supplied by the API caller. Each request must have a unique pairing of client_transfer_id and account                                                                                                                                                                                                                                     | 179dcd33-49f8-4615-989c-560fb387c4fd                                                                                                                                                                                                                                                                                                                          |
| `description`                                                                                                                                                                                                                                                                                                                                                 | *string*                                                                                                                                                                                                                                                                                                                                                      | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                            | Optional description information that will attach to this transaction                                                                                                                                                                                                                                                                                         | Credit given as promotion                                                                                                                                                                                                                                                                                                                                     |
| `feeOperatingAccount`                                                                                                                                                                                                                                                                                                                                         | *string*                                                                                                                                                                                                                                                                                                                                                      | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                            | Optional account field to denote where the credit amount should be withdrawn from. If provided, the account must be a fee operating account. In the case of multiple fee operating accounts under the same correspondent, this field must be provided. If not provided, this will be looked up asynchronously (therefore will not be in the initial response) | accounts/01H8FM6EXVH77SAW3TC8KAWMES                                                                                                                                                                                                                                                                                                                           |
| `type`                                                                                                                                                                                                                                                                                                                                                        | [components.TransfersCreditCreateType](../../models/components/transferscreditcreatetype.md)                                                                                                                                                                                                                                                                  | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                            | The type of the credit being issued                                                                                                                                                                                                                                                                                                                           | PROMOTIONAL                                                                                                                                                                                                                                                                                                                                                   |