tylerhunt/remit

View on GitHub
lib/remit/operations/unsubscribe_for_caller_notification.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'remit/common'

# This action seems to have been deprecated

module Remit
  module UnsubscribeForCallerNotification
    class Request < Remit::Request
      action :UnSubscribeForCallerNotification
      parameter :notification_operation_name, :required => true
    end

    class Response < Remit::Response
    end

    def unsubscribe_for_caller_notification(request = Request.new)
      call(request, Response)
    end
  end
end