class AGCOD::CancelGiftCard

Public Class Methods

new(httpable, request_id, gc_id) click to toggle source
# File lib/aws_agcod/cancel_gift_card.rb, line 9
def initialize(httpable, request_id, gc_id)
  @response = Request.new(httpable,'CancelGiftCard',
    'creationRequestId' => request_id,
    'gcId' => gc_id
  ).response
end