# ExerciseServiceListOptionInstructionsRequest

## Example Usage

```typescript
import { ExerciseServiceListOptionInstructionsRequest } from "@apexfintechsolutions/ascend-sdk/models/operations";

let value: ExerciseServiceListOptionInstructionsRequest = {
  accountId: "ACC123456",
  assetId: "12345",
};
```

## Fields

| Field                                                                                                                                                                           | Type                                                                                                                                                                            | Required                                                                                                                                                                        | Description                                                                                                                                                                     | Example                                                                                                                                                                         |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `accountId`                                                                                                                                                                     | *string*                                                                                                                                                                        | :heavy_check_mark:                                                                                                                                                              | The account id.                                                                                                                                                                 | ACC123456                                                                                                                                                                       |
| `assetId`                                                                                                                                                                       | *string*                                                                                                                                                                        | :heavy_check_mark:                                                                                                                                                              | The asset id.                                                                                                                                                                   | 12345                                                                                                                                                                           |
| `pageSize`                                                                                                                                                                      | *number*                                                                                                                                                                        | :heavy_minus_sign:                                                                                                                                                              | Maximum number of instructions to return (1000). If unspecified, the server will set a default value of 1000.                                                                   | 50                                                                                                                                                                              |
| `pageToken`                                                                                                                                                                     | *string*                                                                                                                                                                        | :heavy_minus_sign:                                                                                                                                                              | A token to retrieve the next page of results. Set this to the value of `next_page_token` from a previous `ListInstructions` call, or leave it empty to retrieve the first page. | eyJvZmZzZXQiOjUwfQ==                                                                                                                                                            |
| `filter`                                                                                                                                                                        | *string*                                                                                                                                                                        | :heavy_minus_sign:                                                                                                                                                              | Optional filter to limit results to specific criteria. Example: "type == 'DO_NOT_EXERCISE' && account_id == '12345'"                                                            | type == 'DO_NOT_EXERCISE' && account_id == '12345'                                                                                                                              |