Inheritance: extends League\Fractal\TransformerAbstract
 public function __construct(Account $account)
 {
     parent::__construct($account);
 }
 public function __construct($account = null, $serializer = null, $client = null)
 {
     parent::__construct($account, $serializer);
     $this->client = $client;
 }
 public function __construct($account = null, $serializer = null, $invoice = null)
 {
     parent::__construct($account, $serializer);
     $this->invoice = $invoice;
 }
 public function __construct(Account $account, $serializer, $tokenName)
 {
     parent::__construct($account, $serializer);
     $this->tokenName = $tokenName;
 }
 public function __construct(Account $account, Client $client)
 {
     parent::__construct($account);
     $this->client = $client;
 }