first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
/**
* @link https://git.onthegosystems.com/tp/translation-proxy/wikis/create_batch_job
*/
class WPML_TP_Batch extends WPML_TP_REST_Object {
private $id;
public function get_id() {
return $this->id;
}
public function set_id( $id ) {
$this->id = (int) $id;
}
protected function get_properties() {
return array(
'id' => 'id',
);
}
}