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

# OrderDiscount Object

Contains all details related to the applied discount to the order.

```graphql
type OrderDiscount implements Node {
  id: ID!
  type: OrderDiscountType!
  name: String
  translatedName: String
  valueType: DiscountValueTypeEnum!
  value: PositiveDecimal!
  reason: String
  amount: Money! @deprecated
  total: 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 amount of discount applied to the order.

Added in Saleor 3.21 Show deprecatedHide deprecated

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

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

DEPRECATED

Use `total` instead.

Returns amount of discount.

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

### Interfaces

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

#### [`Node`](/api-reference/miscellaneous/interfaces/node.md)

An object with an ID

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

### Member Of

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