Class: ET::CUDSupport

Inherits:
GetSupport show all
Defined in:
lib/exact-target-api/cud_support.rb

Instance Attribute Summary

Attributes inherited from GetSupport

#filter

Attributes inherited from BaseObject

#client, #endpoint, #lastRequestID, #obj, #props

Instance Method Summary collapse

Methods inherited from GetSupport

#get, #getMoreResults, #info

Methods inherited from BaseObject

#stringify_keys!, #symbolize_keys!

Constructor Details

#initializeCUDSupport

Returns a new instance of CUDSupport.



3
4
5
# File 'lib/exact-target-api/cud_support.rb', line 3

def initialize
  super
end

Instance Method Details

#delete(data) ⇒ Object



15
16
17
# File 'lib/exact-target-api/cud_support.rb', line 15

def delete(data)
  ET::Delete.new(@client, @obj, data)
end

#patch(data) ⇒ Object



11
12
13
# File 'lib/exact-target-api/cud_support.rb', line 11

def patch(data)
  ET::Patch.new(@client, @obj, data)
end

#post(data) ⇒ Object



7
8
9
# File 'lib/exact-target-api/cud_support.rb', line 7

def post(data)
  ET::Post.new(@client, @obj, data)
end