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
26 lines
568 B
Ruby
26 lines
568 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module SES
|
|
|
|
class GetSendQuota < Fog::Parsers::Base
|
|
|
|
def reset
|
|
@response = { 'GetSendQuotaResult' => {}, 'ResponseMetadata' => {} }
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when "Max24HourSend", "MaxSendRate", "SentLast24Hours"
|
|
@response['GetSendQuotaResult'][name] = @value
|
|
when 'RequestId'
|
|
@response['ResponseMetadata'][name] = @value
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|