# OptionInstructionCreate

Represents a single options trading instruction including do not exercise, exercise by exception, and early exercise instructions

## Example Usage

```typescript
import {
  OptionInstructionCreate,
  OptionInstructionCreateIdentifierType,
  OptionInstructionCreateType,
} from "@apexfintechsolutions/ascend-sdk/models/components";

let value: OptionInstructionCreate = {
  accountId: "01JTNGZM8PWRR6MHBCC6TEG9HE",
  identifier: "AAPL250620P00090000",
  identifierType: OptionInstructionCreateIdentifierType.Osi,
  quantity: {},
  type: OptionInstructionCreateType.DoNotExercise,
};
```

## Fields

| Field                                                                                                                                                                                                                                                                                                                                                        | Type                                                                                                                                                                                                                                                                                                                                                         | Required                                                                                                                                                                                                                                                                                                                                                     | Description                                                                                                                                                                                                                                                                                                                                                  | Example                                                                                                                                                                                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `accountId`                                                                                                                                                                                                                                                                                                                                                  | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | Account identifier                                                                                                                                                                                                                                                                                                                                           | 01JTNGZM8PWRR6MHBCC6TEG9HE                                                                                                                                                                                                                                                                                                                                   |
| `identifier`                                                                                                                                                                                                                                                                                                                                                 | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The asset identifier                                                                                                                                                                                                                                                                                                                                         | AAPL250620P00090000                                                                                                                                                                                                                                                                                                                                          |
| `identifierType`                                                                                                                                                                                                                                                                                                                                             | [components.OptionInstructionCreateIdentifierType](../../models/components/optioninstructioncreateidentifiertype.md)                                                                                                                                                                                                                                         | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | Type to identify the option asset associated with the instruction                                                                                                                                                                                                                                                                                            | OSI                                                                                                                                                                                                                                                                                                                                                          |
| `quantity`                                                                                                                                                                                                                                                                                                                                                   | [components.DecimalCreate](../../models/components/decimalcreate.md)                                                                                                                                                                                                                                                                                         | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python's [decimal.Decimal][].<br/><br/> [BigDecimal]:<br/> https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html<br/> [decimal.Decimal]: https://docs.python.org/3/library/decimal.html |                                                                                                                                                                                                                                                                                                                                                              |
| `type`                                                                                                                                                                                                                                                                                                                                                       | [components.OptionInstructionCreateType](../../models/components/optioninstructioncreatetype.md)                                                                                                                                                                                                                                                             | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | Type of instruction                                                                                                                                                                                                                                                                                                                                          | DO_NOT_EXERCISE                                                                                                                                                                                                                                                                                                                                              |