Skip to content
This repository was archived by the owner on Aug 12, 2022. It is now read-only.

Commit 3a442a2

Browse files
committed
feat(core) add processing_language in Response model
1 parent 25943c0 commit 3a442a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Response.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct($json)
1818
$response = json_decode($json->body);
1919
$this->entities = [];
2020

21-
$this->raw = $response->results;
21+
$this->raw = $response->results;
2222
$this->act = $response->results->act;
2323
$this->type = $response->results->type;
2424
$this->source = $response->results->source;
@@ -33,6 +33,7 @@ public function __construct($json)
3333

3434
$this->uuid = $response->results->uuid;
3535
$this->language = $response->results->language;
36+
$this->processing_language = $response->results->processing_language;
3637
$this->version = $response->results->version;
3738
$this->timestamp = $response->results->timestamp;
3839
$this->status = $response->results->status;

0 commit comments

Comments
 (0)