OOPaginatedParentItem.h
1 #import <Foundation/Foundation.h>
2 #import "OOCallbacks.h"
3 #import "OOReturnState.h"
4 
5 @class OOOoyalaError;
6 
7 @protocol OOPaginatedParentItem<NSObject>
8 
13 - (NSString *)embedCode;
14 
20 - (OOReturnState)updateWithDictionary:(NSDictionary *)data;
21 
26 - (BOOL)hasMoreChildren;
27 
31 - (NSString *)nextChildren;
32 
38 - (BOOL)fetchMoreChildren:(OOFetchMoreChildrenCallback)callback;
39 
44 - (NSUInteger)childrenCount;
45 
46 
47 @end
BOOL hasMoreChildren()
Find out it this OOPaginatedParentItem has more children.
NSString * embedCode()
The OOPaginatedParentItem&#39;s Embed Code.
NSUInteger childrenCount()
The number of children this OOPaginatedParentItem has.
Represents an error in the Ooyala SDK.
Definition: OOOoyalaError.h:56
Definition: OOPaginatedParentItem.h:7