STBrand
Objective-C
@interface STBrand : NSObject <NSCoding, NSCopying>
Swift
class STBrand : NSObject, NSCoding, NSCopying
A model class which represents the brand details and to represent the details about brand which was associcated to the scanned QR code
-
The brand description as per ScanTrust Portal
Declaration
Objective-C
@property (nonatomic, strong) NSString *brandDescription;
Swift
var brandDescription: String! { get set }
-
The image URL string of brand
Declaration
Objective-C
@property (nonatomic, strong) NSString *image;
Swift
var image: String! { get set }
-
The URL string of brand
Declaration
Objective-C
@property (nonatomic, strong) NSString *url;
Swift
var url: String! { get set }
-
The name of the brand as per ScanTrust Portal
Declaration
Objective-C
@property (nonatomic, strong) NSString *name;
Swift
var name: String! { get set }