Skip to main content

EventimProductPriceAndStockDto

Represents price and stock information for a specific product.

eventSessionIdinteger<int32>nullable

Event session identifier (ID_CatalogContents) if product linked to a eventSession.

productIdinteger<int32>required

Product identifier (ID_ObjectType).

amountnumber<double>required

Base Amount.

feesnumber<double>required

Total Fees.

feesDetails object[]nullable

Breakdown of amount components by column (taxes, fees, etc.).

  • Array [
  • colIdinteger<int32>required

    Column identifier matching the amount label definition.

    amountnumber<double>required

    Amount value for this component (e.g., base price, tax, fee).

  • ]
  • stockLimitinteger<int32>nullable

    Stock limit (only if not unlimited).

    productTypestringnullable

    Product type from parent generic OptionalField.

    EventimProductPriceAndStockDto
    {
    "eventSessionId": 0,
    "productId": 0,
    "amount": 0,
    "fees": 0,
    "feesDetails": [
    {
    "colId": 0,
    "amount": 0
    }
    ],
    "stockLimit": 0,
    "productType": "string"
    }