File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Sources/WordPressKit/Models Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 17
17
@property (nonatomic , strong ) NSNumber *commentCount;
18
18
@property (nonatomic ) BOOL commentsOpen;
19
19
@property (nonatomic , strong ) NSString *featuredImage;
20
+ @property (nonatomic , strong ) NSString *autoSuggestedFeaturedImage;
20
21
@property (nonatomic , strong ) NSNumber *feedID;
21
22
@property (nonatomic , strong ) NSNumber *feedItemID;
22
23
@property (nonatomic , strong ) NSString *globalID;
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ - (instancetype)initWithDictionary:(NSDictionary *)dict;
109
109
self.content = [self postContentFromPostDictionary: dict];
110
110
self.date_created_gmt = [self stringOrEmptyString: [dict stringForKey: PostRESTKeyDate]];
111
111
self.featuredImage = [self featuredImageFromPostDictionary: dict];
112
+ self.autoSuggestedFeaturedImage = [self featuredMediaImageFromPostDictionary: dict];
112
113
self.feedID = [dict numberForKey: PostRESTKeyFeedID];
113
114
self.feedItemID = [dict numberForKey: PostRESTKeyFeedItemID];
114
115
self.globalID = [self stringOrEmptyString: [dict stringForKey: PostRESTKeyGlobalID]];
You can’t perform that action at this time.
0 commit comments