Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Add ET_EmailSendDefinition #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions FuelSDK/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ def __init__(self):
super(ET_Email, self).__init__()
self.obj_type = 'Email'

class ET_EmailSendDefinition(ET_CUDSupport):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do you use this? what scope would you set for retrieving email send notifications?

def __init__(self):
super(ET_EmailSendDefinition, self).__init__()
self.obj_type = 'EmailSendDefinition'

class ET_TriggeredSend(ET_CUDSupport):
subscribers = None
attributes = None
Expand Down