/**
  * Consultar detalhes de um pagamento
  *
  * @param $code
  * @param array $options
  * @throws ClientException
  * @return ResponseInterface
  */
 public function find($code, array $options = [])
 {
     $url = $this->interpolate(self::BASE_PATH . "/{code}", ['version' => $this->client->getApiVersion(), 'resource' => self::RESOURCE, 'code' => $code]);
     return $this->client->get($url, $options);
 }