> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/orders/llms.txt)
> Source: https://docs.saleor.io/api-reference/orders/objects/order-line-discount

# OrderLineDiscount Object

Represent the discount applied to order line.

```graphql
type OrderLineDiscount {
  id: ID!
  type: OrderDiscountType!
  name: String
  translatedName: String
  valueType: DiscountValueTypeEnum!
  value: PositiveDecimal!
  reason: String
  total: Money!
  unit: Money!
}
```

<a id="fields"></a>

### Fields

<a id="id"></a>

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

The ID of discount applied.

<a id="type"></a>

#### [`type`](#type) ● [`OrderDiscountType!`](/api-reference/discounts/enums/order-discount-type.md)

The type of applied discount: Sale, Voucher or Manual.

<a id="name"></a>

#### [`name`](#name) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

The name of applied discount.

<a id="translated-name"></a>

#### [`translatedName`](#translated-name) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Translated name of the applied discount.

<a id="value-type"></a>

#### [`valueType`](#value-type) ● [`DiscountValueTypeEnum!`](/api-reference/discounts/enums/discount-value-type-enum.md)

Type of the discount: fixed or percent

<a id="value"></a>

#### [`value`](#value) ● [`PositiveDecimal!`](/api-reference/miscellaneous/scalars/positive-decimal.md)

Value of the discount. Can store fixed value or percent value

<a id="reason"></a>

#### [`reason`](#reason) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Explanation for the applied discount.

Requires the MANAGE\_ORDERS permission.

<a id="total"></a>

#### [`total`](#total) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

The discount amount applied to the line item.

<a id="unit"></a>

#### [`unit`](#unit) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

The discount amount applied to the single line unit.

<a id="member-of"></a>

### Member Of

[`OrderLine`](/api-reference/orders/objects/order-line.md) object
