# call

[**near-bindgen**](https://near-sdk-js.gitbook.io/near-sdk-js/near-bindgen) • **Docs**

***

[near-sdk-js v2.0.0](https://near-sdk-js.gitbook.io/near-sdk-js/packages) / [near-bindgen](https://near-sdk-js.gitbook.io/near-sdk-js/near-bindgen) / call

## Function: call()

> **call**(`options`): `DecoratorFunction`

Tells the SDK to expose this function as a call function. Adds the necessary checks if the function is private or payable.

### Parameters

• **options**

Options to configure the function behaviour.

• **options.payableFunction?**: `boolean`

Whether the function can accept an attached deposit.

• **options.privateFunction?**: `boolean`

Whether the function can be called by other contracts.

### Returns

`DecoratorFunction`

### Defined in

[packages/near-sdk-js/src/near-bindgen.ts:73](https://github.com/near/near-sdk-js/blob/b58ac04fc6dff2f1120e9098c0cb059493486598/packages/near-sdk-js/src/near-bindgen.ts#L73)
