<?php base64_decode(string $string, bool $strict = false): string|false
<?php { $requestBody = $this->event['body'] ?? ''; if ($this->event['isBase64Encoded'] ?? false) { $requestBody = base64_decode($requestBody); } return $requestBody; }
<?php public function getData(): array { return json_decode(base64_decode($this->getRawData()), true); } public function getEventName(): string
<?php public function getLogs(): string { return base64_decode($this->result->getLogResult()); }