Mobile API Reference  MicroStrategy 2019
SubscribeTaskRequest.h
Go to the documentation of this file.
1 //
2 // SubscribeTaskRequest.h
3 // MSTRMobileSDK
4 //
5 // Created by Srinivas Singanamalla on 9/20/10.
6 // Copyright 2010 MicroStrategy Inc. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
11 
13 
14 @private
15  NSString* objectID;
16  NSInteger objectType;
17  NSInteger stateID;
18  NSString* promptAnswers;
19  NSString* triggerID;
20  NSString* pagebyKeys;
21 
22  //ipad or iphone
23  NSInteger deviceType;
24  NSString* subscriptionName;
25 }
26 
27 @property (nonatomic, copy) NSString* objectID;
28 @property NSInteger objectType;
29 @property NSInteger stateID;
30 @property (nonatomic,copy) NSString* promptAnswers;
31 @property (nonatomic, copy) NSString* triggerID;
32 @property (nonatomic, copy) NSString* subscriptionName;
33 @property (nonatomic, copy) NSString* pagebyKeys;
34 @property NSInteger deviceType;
35 
36 @end
Definition: MessageBasedTaskRequest.h:13
Definition: SubscribeTaskRequest.h:12