NeverBounce/NeverBounceApi-Ruby

View on GitHub
lib/never_bounce/api/response/credits_info/monthly.rb

Summary

Maintainability
A
0 mins
Test Coverage

require_relative "base"

module NeverBounce; module API; module Response; module CreditsInfo
  class Monthly < Base
    # @!attribute monthly_api_usage
    #   @return [Integer]
    oattr :monthly_api_usage, :scalar, type: :integer

    # Always <tt>:monthly</tt>.
    # @return [Symbol]
    def subscription_type
      :monthly
    end
  end
end; end; end; end