24 lines
361 B
PHP
24 lines
361 B
PHP
<?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',
|
|
);
|
|
}
|
|
}
|