APPLY_REFUND_STATUS.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/OrderExchange.proto
  5. namespace Proto\Api;
  6. use UnexpectedValueException;
  7. /**
  8. * 退款申请记录状态
  9. *
  10. * Protobuf type <code>proto.api.APPLY_REFUND_STATUS</code>
  11. */
  12. class APPLY_REFUND_STATUS
  13. {
  14. /**
  15. * 保留
  16. *
  17. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_RESERVED = 0;</code>
  18. */
  19. const APPLY_REFUND_STATUS_RESERVED = 0;
  20. /**
  21. * 待确认状态
  22. *
  23. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_WAIT_CONFIRM = 1;</code>
  24. */
  25. const APPLY_REFUND_STATUS_WAIT_CONFIRM = 1;
  26. /**
  27. * 待审核状态
  28. *
  29. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_WAIT_AUDIT = 2;</code>
  30. */
  31. const APPLY_REFUND_STATUS_WAIT_AUDIT = 2;
  32. /**
  33. * 退款中状态
  34. *
  35. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUNDING = 3;</code>
  36. */
  37. const APPLY_REFUND_STATUS_REFUNDING = 3;
  38. /**
  39. * 退款完成状态
  40. *
  41. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUND_SUCCESS = 4;</code>
  42. */
  43. const APPLY_REFUND_STATUS_REFUND_SUCCESS = 4;
  44. /**
  45. * 审核失败
  46. *
  47. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_AUDIT_FAIL = 5;</code>
  48. */
  49. const APPLY_REFUND_STATUS_AUDIT_FAIL = 5;
  50. /**
  51. * 退款失败
  52. *
  53. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUND_FAIL = 6;</code>
  54. */
  55. const APPLY_REFUND_STATUS_REFUND_FAIL = 6;
  56. /**
  57. * 拒绝退款
  58. *
  59. * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUND_REJECT = 7;</code>
  60. */
  61. const APPLY_REFUND_STATUS_REFUND_REJECT = 7;
  62. private static $valueToName = [
  63. self::APPLY_REFUND_STATUS_RESERVED => 'APPLY_REFUND_STATUS_RESERVED',
  64. self::APPLY_REFUND_STATUS_WAIT_CONFIRM => 'APPLY_REFUND_STATUS_WAIT_CONFIRM',
  65. self::APPLY_REFUND_STATUS_WAIT_AUDIT => 'APPLY_REFUND_STATUS_WAIT_AUDIT',
  66. self::APPLY_REFUND_STATUS_REFUNDING => 'APPLY_REFUND_STATUS_REFUNDING',
  67. self::APPLY_REFUND_STATUS_REFUND_SUCCESS => 'APPLY_REFUND_STATUS_REFUND_SUCCESS',
  68. self::APPLY_REFUND_STATUS_AUDIT_FAIL => 'APPLY_REFUND_STATUS_AUDIT_FAIL',
  69. self::APPLY_REFUND_STATUS_REFUND_FAIL => 'APPLY_REFUND_STATUS_REFUND_FAIL',
  70. self::APPLY_REFUND_STATUS_REFUND_REJECT => 'APPLY_REFUND_STATUS_REFUND_REJECT',
  71. ];
  72. public static function name($value)
  73. {
  74. if (!isset(self::$valueToName[$value])) {
  75. throw new UnexpectedValueException(sprintf(
  76. 'Enum %s has no name defined for value %s', __CLASS__, $value));
  77. }
  78. return self::$valueToName[$value];
  79. }
  80. public static function value($name)
  81. {
  82. $const = __CLASS__ . '::' . strtoupper($name);
  83. if (!defined($const)) {
  84. throw new UnexpectedValueException(sprintf(
  85. 'Enum %s has no value defined for name %s', __CLASS__, $name));
  86. }
  87. return constant($const);
  88. }
  89. }