//
//  TWTRTimelineType.h
//  TwitterKit
//
//  Created by Steven Hepting on 3/30/15.
//  Copyright (c) 2015 Twitter. All rights reserved.
//

/*
 *  Type of timelines that may be loaded and shown to the user.
 */
typedef NS_ENUM(NSUInteger, TWTRTimelineType) {
    /*
     *  User Timeline
     */
    TWTRTimelineTypeUser = 1,
    /*
     *  Search Timeline
     */
    TWTRTimelineTypeSearch,
    /**
     *  Collection Timeline
     */
    TWTRTimelineTypeCollection,
};
