hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  TWTRScribeCardEvent.h
//  TwitterCore
//
//  Created by Kang Chen on 9/30/15.
//  Copyright © 2015 Twitter Inc. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "TWTRScribeSerializable.h"
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 *  Type of promotional card. Numeric values are direct mapping of what's in the backend.
 */
typedef NS_ENUM(NSUInteger, TWTRScribePromotionCardType) {
    /**
     *  Image App Card
     */
    TWTRScribePromotionCardTypeImageAppDownload = 8,
};
 
/**
 *  Immutable representation of a scribe Card event item.
 */
@interface TWTRScribeCardEvent : NSObject <TWTRScribeSerializable>
 
@property (nonatomic, readonly) TWTRScribePromotionCardType promotionCardType;
 
- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithPromotionCardType:(TWTRScribePromotionCardType)promotionCardType;
 
@end
 
NS_ASSUME_NONNULL_END