26 lines
519 B
PHP
26 lines
519 B
PHP
<?php
|
|
/**
|
|
* @api {OBJECT} Customfieldoption Customfieldoption
|
|
* @apiVersion 4.4.0
|
|
* @apiGroup Data Structures
|
|
* @apiParam {Number} id Id of the option.
|
|
* @apiParam {String} name Name of the option.
|
|
*/
|
|
|
|
class Customfieldoption extends DataStore {
|
|
const TABLE = 'customfieldoption';
|
|
|
|
public static function getProps() {
|
|
return [
|
|
'name'
|
|
];
|
|
}
|
|
|
|
public function toArray() {
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name
|
|
];
|
|
}
|
|
}
|