Inherits from NSObject
Declared in FDWUser.h

Overview

Represents a FeedWrangler user

Warning: As of now, the only way to get a user object from the API is by authenticating via [FDWClient authenticateEmail:password:clientKey:completionHandler:]

Tasks

Properties

  •   email

    The user’s email address

    property
  •   accountStatus

    The user’s account status, either FDWAccountStatusActive or FDWAccountStatusInactive

    property
  •   readLaterService

    The read later service the user has associated with FeedWrangler, either FDWReadLaterServiceNone, FDWReadLaterServiceInstapaper, or FDWReadLaterServicePocket

    property

Initialization

Properties

accountStatus

The user’s account status, either FDWAccountStatusActive or FDWAccountStatusInactive

@property FDWAccountStatus accountStatus

Declared In

FDWUser.h

email

The user’s email address

@property (strong) NSString *email

Declared In

FDWUser.h

readLaterService

The read later service the user has associated with FeedWrangler, either FDWReadLaterServiceNone, FDWReadLaterServiceInstapaper, or FDWReadLaterServicePocket

@property FDWReadLaterService readLaterService

Declared In

FDWUser.h

Class Methods

userWithDictionary:

Creates an FDWUser object from the JSON representation that the API returns

+ (instancetype)userWithDictionary:(NSDictionary *)dictionary

Parameters

dictionary

The dictionary to create the user from

Declared In

FDWUser.h