Method: Unit::Fee::CreateFeeRequest#initialize
- Defined in:
- lib/unit/models/fee/create_fee_request.rb
#initialize(account_id, amount, description, tags = nil, idempotency_key = nil) ⇒ CreateFeeRequest
Returns a new instance of CreateFeeRequest.
15 16 17 18 19 20 21 |
# File 'lib/unit/models/fee/create_fee_request.rb', line 15 def initialize(account_id, amount, description, = nil, idempotency_key = nil) @account_id = account_id @amount = amount @description = description @tags = @idempotency_key = idempotency_key end |