/**
  * @param OpenpayCustomerType $customerType
  * @return CustomerInterface
  */
 protected function populate(OpenpayCustomerType $customerType)
 {
     $object = clone $this->object;
     $addressMapper = $this->addressMapper->create($customerType->getAddress());
     $object->setEntityId($customerType->getId());
     $object->setAddress($addressMapper);
     $object->setBalance($customerType->getBalance());
     $object->setClabe($customerType->getClabe());
     $object->setCreationDate($customerType->getCreationDate());
     $object->setEmail($customerType->getEmail());
     $object->setName($customerType->getName());
     $object->setLastName($customerType->getLastName());
     $object->setPhoneNumber($customerType->getPhoneNumber());
     $storeType = $this->storeMapper->create($customerType->getStore());
     $object->setStore($storeType);
     return $object;
 }