This repository was archived by the owner on Sep 15, 2025. It is now read-only.
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 1717@property (nonatomic , strong ) NSNumber *commentCount;
1818@property (nonatomic ) BOOL commentsOpen;
1919@property (nonatomic , strong ) NSString *featuredImage;
20+ @property (nonatomic , strong ) NSString *autoSuggestedFeaturedImage;
2021@property (nonatomic , strong ) NSNumber *feedID;
2122@property (nonatomic , strong ) NSNumber *feedItemID;
2223@property (nonatomic , strong ) NSString *globalID;
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ - (instancetype)initWithDictionary:(NSDictionary *)dict;
109109 self.content = [self postContentFromPostDictionary: dict];
110110 self.date_created_gmt = [self stringOrEmptyString: [dict stringForKey: PostRESTKeyDate]];
111111 self.featuredImage = [self featuredImageFromPostDictionary: dict];
112+ self.autoSuggestedFeaturedImage = [self featuredMediaImageFromPostDictionary: dict];
112113 self.feedID = [dict numberForKey: PostRESTKeyFeedID];
113114 self.feedItemID = [dict numberForKey: PostRESTKeyFeedItemID];
114115 self.globalID = [self stringOrEmptyString: [dict stringForKey: PostRESTKeyGlobalID]];
You can’t perform that action at this time.
0 commit comments