Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
coinbase
/
src
/
Value
:
Fee.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }