mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
284430f526
* All parsers filled out * Requests mostly filled out * SendEmail and SendRawEmail still need to be implemented
24 lines
453 B
Ruby
24 lines
453 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module SES
|
|
|
|
class VerifyEmailAddress < Fog::Parsers::Base
|
|
|
|
def reset
|
|
@response = { 'VerifyEmailAddressResult' => nil, 'ResponseMetadata' => {} }
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when 'RequestId'
|
|
@response['ResponseMetadata'][name] = @value
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|