billable->request('POST', 'v1/transactions', $attributes))) ->setBillable($this->billable); } /** * {@inheritDoc} */ public function find(string $id): ?Transaction { return (new Transaction(fn() => $this->billable->request('GET', sprintf('v1/transactions/%s', $id)))) ->setBillable($this->billable); } }