BRProductAdditionalLine

Objective-C

@interface BRProductAdditionalLine : NSObject <BRSerializable>

Swift

class BRProductAdditionalLine : NSObject, BRSerializable

Represents an additional line of text attached to a product

Properties

  • The type of this additional line. For example “Full Price”, “Price Cut”, “Quantity”, etc.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) BRStringValue *type;

    Swift

    var type: BRStringValue! { get }
  • The text of this additional line

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) BRStringValue *text;

    Swift

    var text: BRStringValue! { get }
  • The line number of this additional line

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger lineNumber;

    Swift

    var lineNumber: Int { get }