<?php
namespace App\V4\Messenger\Message;
class ResynchronizeBadgesRequest
{
/**
* @var string
*/
private $customerId;
/**
* @return string
*/
public function getCustomerId(): string
{
return $this->customerId;
}
/**
* @param string $customerId
*
* @return ResynchronizeBadgesRequest
*/
public function setCustomerId(string $customerId): self
{
$this->customerId = $customerId;
return $this;
}
}