> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/selphi-biometria-facial/propiedades/antispoofpayloadsize.md).

# antispoofPayloadSize

## Details

**Attribute:** `antispoof-payload-size`

**Type:** `PayloadSize`

**Default value:** `PayloadSize.Small`

### PayloadSize

| Member   | Value    | Description       |
| -------- | -------- | ----------------- |
| `Small`  | `small`  | Reduced payload.  |
| `Normal` | `normal` | Standard payload. |

## Morphology

```typescript
import { PayloadSize } from '@facephi/selphi-web-component';

selphi.antispoofPayloadSize = PayloadSize.Small;
```

## Description

Size of the payload sent to the anti-fraud service when `antispoof` is active in `facephi-selphi-widget`.

***

## Example

```jsx
import { PayloadSize } from '@facephi/selphi-web-component';

<facephi-selphi-widget
    antispoofPayloadSize={PayloadSize.Small}
/>
```
