File "Fee.php"

Full Path: /home/cananyalcin/public_html/core/lib/coinbase/src/Value/Fee.php
File size: 416 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Coinbase\Wallet\Value;

class Fee
{
    /** @var string */
    private $type;

    /** @var Money */
    private $amount;

    public function __construct($type, Money $amount)
    {
        $this->type = $type;
        $this->amount = $amount;
    }

    public function getType()
    {
        return $this->type;
    }

    public function getAmount()
    {
        return $this->amount;
    }
}