Skip to main content

BRProductAdditionalLine

Represents an additional line of text attached to a product entry on the receipt.

Declaration

@interface BRProductAdditionalLine : NSObject <BRSerializable>
class BRProductAdditionalLine : NSObject, BRSerializable

Quick Reference

Properties

PropertyDescription
typeThe type of this additional line (e.g., "Full Price", "Price Cut", "Quantity").
textThe text content of this additional line.
lineNumberThe line number of this additional line relative to the product.

Properties

type (read-only)

@property (nonatomic, strong, readonly) BRStringValue *type;
var type: BRStringValue! { get }

The type of this additional line (e.g., "Full Price", "Price Cut", "Quantity").


text (read-only)

@property (nonatomic, strong, readonly) BRStringValue *text;
var text: BRStringValue! { get }

The text content of this additional line.


lineNumber (read-only)

@property (nonatomic, readonly) NSInteger lineNumber;
var lineNumber: Int { get }

The line number of this additional line relative to the product.