00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00022 @interface SNSListSubscriptionsByTopicRequest : NSObject
00023
00024 {
00025 NSString* topicArn;
00026 NSString* nextToken;
00027
00028 }
00029
00030
00034 @property (nonatomic, retain) NSString* topicArn;
00035
00039 @property (nonatomic, retain) NSString* nextToken;
00040
00041
00046 -(id)init;
00047
00055 -(id)initWithTopicArn:(NSString*)theTopicArn;
00056
00066 -(id)initWithTopicArn:(NSString*)theTopicArn andNextToken:(NSString*)theNextToken;
00067
00074 -(NSString*)description;
00075
00076
00077 @end
00078