# TransactionsDataTableBuilder

## Extends

- `TransactionsDataTableBuilder`

### build()

```ts
build(): any[][];
```

#### Returns

`any`[][]

A two-dimensional array containing all [[Transactions]].

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.build
```

***

### formatDates()

```ts
formatDates(format): TransactionsDataTableBuilder;
```

Defines whether the dates should be formatted, based on date patter of the [[Book]]

#### Parameters

| Parameter | Type |
| :------ | :------ |
| `format` | `boolean` |

#### Returns

`TransactionsDataTableBuilder`

This builder with respective formatting option, for chaining.

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.formatDates
```

***

### formatValues()

```ts
formatValues(format): TransactionsDataTableBuilder;
```

Defines whether amounts should be formatted based on [[DecimalSeparator]] of the [[Book]]

#### Parameters

| Parameter | Type |
| :------ | :------ |
| `format` | `boolean` |

#### Returns

`TransactionsDataTableBuilder`

This builder with respective formatting option, for chaining.

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.formatValues
```

***

### getAccount()

```ts
getAccount(): Account;
```

#### Returns

`Account`

The account, when filtering by a single account.

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.getAccount
```

***

### includeIds()

```ts
includeIds(include): TransactionsDataTableBuilder;
```

Defines whether include transaction ids.

#### Parameters

| Parameter | Type |
| :------ | :------ |
| `include` | `boolean` |

#### Returns

`TransactionsDataTableBuilder`

This builder with respective include ids option, for chaining.

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.includeIds
```

***

### includeProperties()

```ts
includeProperties(include): TransactionsDataTableBuilder;
```

Defines whether include custom transaction properties.

#### Parameters

| Parameter | Type |
| :------ | :------ |
| `include` | `boolean` |

#### Returns

`TransactionsDataTableBuilder`

This builder with respective include properties option, for chaining.

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.includeProperties
```

***

### includeUrls()

```ts
includeUrls(include): TransactionsDataTableBuilder;
```

Defines whether include attachments and url links.

#### Parameters

| Parameter | Type |
| :------ | :------ |
| `include` | `boolean` |

#### Returns

`TransactionsDataTableBuilder`

This builder with respective include attachment option, for chaining.

#### Inherited from

```ts
Bkper.TransactionsDataTableBuilder.includeUrls
```
