File tree 1 file changed +22
-2
lines changed
1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -87,15 +87,35 @@ def __init__(self):
87
87
## wrap an Exact Target List and List Subscriber
88
88
##
89
89
########
90
+ class ET_Group (ET_CUDSupport ):
91
+ def __init__ (self ):
92
+ super (ET_Group , self ).__init__ ()
93
+ self .obj_type = 'Group'
94
+
95
+ class ET_Send (ET_CUDSupport ):
96
+ def __init__ (self ):
97
+ super (ET_Send , self ).__init__ ()
98
+ self .obj_type = 'Send'
99
+
100
+ class ET_ListSend (ET_CUDSupport ):
101
+ def __init__ (self ):
102
+ super (ET_ListSend , self ).__init__ ()
103
+ self .obj_type = 'ListSend'
104
+
90
105
class ET_List (ET_CUDSupport ):
91
106
def __init__ (self ):
92
107
super (ET_List , self ).__init__ ()
93
108
self .obj_type = 'List'
94
-
109
+
95
110
class ET_List_Subscriber (ET_GetSupport ):
96
111
def __init__ (self ):
97
112
super (ET_List_Subscriber , self ).__init__ ()
98
- self .obj_type = 'ListSubscriber'
113
+ self .obj_type = 'ListSubscriber'
114
+
115
+ class ET_SubscriberList (ET_GetSupport ):
116
+ def __init__ (self ):
117
+ super (ET_Subscriber_List , self ).__init__ ()
118
+ self .obj_type = 'SubscriberList'
99
119
100
120
class ET_SentEvent (ET_GetSupport ):
101
121
def __init__ (self ):
You can’t perform that action at this time.
0 commit comments