| 1 | <?php |
||
| 7 | class ResultBaseField |
||
| 8 | { |
||
| 9 | const REQUEST_ID = 'requestId'; |
||
| 10 | const TYPE = 'type'; |
||
| 11 | const CREATED_AT = 'createdAt'; |
||
| 12 | const SEQUENCE_ID = 'sequenceId'; |
||
| 13 | const MERCHANT_USER_ID = 'merchantUserId'; |
||
| 14 | const SCORE = 'score'; |
||
| 15 | const ACCEPT = 'accept'; |
||
| 16 | const REJECT = 'reject'; |
||
| 17 | const MANUAL = 'manual'; |
||
| 18 | const REASON = 'reason'; |
||
| 19 | const ACTION = 'action'; |
||
| 20 | |||
| 21 | public static function getAll() |
||
| 37 | } |
||
| 38 |