芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/vonage/client-core/src/Voice/Webhook/Record.php
startTime = new DateTimeImmutable($event['start_time']); $this->endTime = new DateTimeImmutable($event['end_time']); $this->timestamp = new DateTimeImmutable($event['timestamp']); $this->recordingUrl = $event['recording_url']; $this->recordingUuid = $event['recording_uuid']; $this->conversationUuid = $event['conversation_uuid']; $this->size = (int)$event['size']; } public function getStartTime(): DateTimeImmutable { return $this->startTime; } public function getRecordingUrl(): string { return $this->recordingUrl; } public function getSize(): int { return $this->size; } public function getRecordingUuid(): string { return $this->recordingUuid; } public function getEndTime(): DateTimeImmutable { return $this->endTime; } public function getConversationUuid(): string { return $this->conversationUuid; } public function getTimestamp(): DateTimeImmutable { return $this->timestamp; } }