/** * Checks whether the given class is supported for denormalization by this normalizer. * * @param mixed $data Data to denormalize from. * @param string $type The class to which the data should be denormalized. * @param string $format The format being deserialized from. * * @return bool */ public function supportsDenormalization($data, $type, $format = null) { if ($format == "xml" && $type == FraudFilter::GetClassName()) { return true; } return false; }
private function denormaliseFraudFilter(\ArrayAccess $array) { return $this->serializer->denormalize($array['fraudfilter'], FraudFilter::GetClassName(), $this->format, $this->context); }