00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #import "SNSSubscription.h"
00017
00018 #import "../AmazonServiceResponse.h"
00019 #import "../AmazonServiceExceptionUnmarshaller.h"
00020
00021 #import "SNSNotFoundException.h"
00022 #import "SNSAuthorizationErrorException.h"
00023 #import "SNSInternalErrorException.h"
00024 #import "SNSInvalidParameterException.h"
00025
00030 @interface SNSListSubscriptionsByTopicResponse : AmazonServiceResponse
00031
00032 {
00033 NSMutableArray* subscriptions;
00034 NSString* nextToken;
00035
00036 }
00037
00038
00039
00044 -(id)init;
00045
00049 @property (nonatomic, retain) NSMutableArray* subscriptions;
00050
00055 @property (nonatomic, retain) NSString* nextToken;
00056
00061 -(void)addSubscription:(SNSSubscription*)subscription;
00062
00069 -(NSString*)description;
00070
00071
00072 @end
00073