# RequestGasAndPaymasterAndDataResponse | @account-kit/infra

> Overview of RequestGasAndPaymasterAndDataResponse from @account-kit/infra

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
type RequestGasAndPaymasterAndDataResponse<TEntryPointVersion> = Pick<
  UserOperationRequest,
  | "callGasLimit"
  | "preVerificationGas"
  | "verificationGasLimit"
  | "maxFeePerGas"
  | "maxPriorityFeePerGas"
> &
  TEntryPointVersion extends "0.6.0"
  ? object
  : TEntryPointVersion extends "0.7.0"
    ? Pick<
        UserOperationRequest<"0.7.0">,
        | "paymaster"
        | "paymasterData"
        | "paymasterVerificationGasLimit"
        | "paymasterPostOpGasLimit"
      >
    : never;
```

Defined in: [account-kit/infra/src/actions/types.ts:71](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/infra/src/actions/types.ts#L71)

## Type Parameters

<table>
  <thead>
    <tr>
      <th align="left">Type Parameter</th>
      <th align="left">Default type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `TEntryPointVersion` *extends* `EntryPointVersion`
      </td>

      <td>
        `EntryPointVersion`
      </td>
    </tr>

  </tbody>
</table>