class RemoveBg::AccountInfo::CreditsInfo

Attributes

enterprise[R]
payg[R]
subscription[R]
total[R]

Public Class Methods

new(total:, subscription:, payg:, enterprise:) click to toggle source
# File lib/remove_bg/account_info.rb, line 26
def initialize(total:, subscription:, payg:, enterprise:)
  @total = total
  @subscription = subscription
  @payg = payg
  @enterprise = enterprise
end