first commit
This commit is contained in:
@@ -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',
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user