Represents the order product variants object.

interface OrderProductVariantsObject {
    FindById(id: number): OrderProductVariant;
}

Methods

Methods

  • Finds an order product variant by its ID.

    Parameters

    • id: number

      The ID of the order product variant to find.

    Returns OrderProductVariant

    The found order product variant object, or null if not found.