class DeeplAPI::UsageInformation

Information about API usage & limits for this account.

Attributes

character_count[R]

How many characters were already translated in the current billing period.

character_limit[R]

How many characters can be translated per billing period, based on the account settings.

Public Class Methods

new(character_limit:, character_count:) click to toggle source
# File lib/deepl_api.rb, line 181
def initialize(character_limit:, character_count:)
  @character_limit = character_limit
  @character_count = character_count
end