You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
194B

  1. <?php
  2. namespace App\Kintone;
  3. enum KintoneRecordQueryOperator: string
  4. {
  5. case EQ = "=";
  6. case NEQ = "!=";
  7. case GT = ">";
  8. case LT = "<";
  9. case GE = ">=";
  10. case LE = "<=";
  11. }