12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/OrderExchange.proto
- namespace Proto\Api;
- use UnexpectedValueException;
- /**
- * 退款申请记录状态
- *
- * Protobuf type <code>proto.api.APPLY_REFUND_STATUS</code>
- */
- class APPLY_REFUND_STATUS
- {
- /**
- * 保留
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_RESERVED = 0;</code>
- */
- const APPLY_REFUND_STATUS_RESERVED = 0;
- /**
- * 待确认状态
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_WAIT_CONFIRM = 1;</code>
- */
- const APPLY_REFUND_STATUS_WAIT_CONFIRM = 1;
- /**
- * 待审核状态
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_WAIT_AUDIT = 2;</code>
- */
- const APPLY_REFUND_STATUS_WAIT_AUDIT = 2;
- /**
- * 退款中状态
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUNDING = 3;</code>
- */
- const APPLY_REFUND_STATUS_REFUNDING = 3;
- /**
- * 退款完成状态
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUND_SUCCESS = 4;</code>
- */
- const APPLY_REFUND_STATUS_REFUND_SUCCESS = 4;
- /**
- * 审核失败
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_AUDIT_FAIL = 5;</code>
- */
- const APPLY_REFUND_STATUS_AUDIT_FAIL = 5;
- /**
- * 退款失败
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUND_FAIL = 6;</code>
- */
- const APPLY_REFUND_STATUS_REFUND_FAIL = 6;
- /**
- * 拒绝退款
- *
- * Generated from protobuf enum <code>APPLY_REFUND_STATUS_REFUND_REJECT = 7;</code>
- */
- const APPLY_REFUND_STATUS_REFUND_REJECT = 7;
- private static $valueToName = [
- self::APPLY_REFUND_STATUS_RESERVED => 'APPLY_REFUND_STATUS_RESERVED',
- self::APPLY_REFUND_STATUS_WAIT_CONFIRM => 'APPLY_REFUND_STATUS_WAIT_CONFIRM',
- self::APPLY_REFUND_STATUS_WAIT_AUDIT => 'APPLY_REFUND_STATUS_WAIT_AUDIT',
- self::APPLY_REFUND_STATUS_REFUNDING => 'APPLY_REFUND_STATUS_REFUNDING',
- self::APPLY_REFUND_STATUS_REFUND_SUCCESS => 'APPLY_REFUND_STATUS_REFUND_SUCCESS',
- self::APPLY_REFUND_STATUS_AUDIT_FAIL => 'APPLY_REFUND_STATUS_AUDIT_FAIL',
- self::APPLY_REFUND_STATUS_REFUND_FAIL => 'APPLY_REFUND_STATUS_REFUND_FAIL',
- self::APPLY_REFUND_STATUS_REFUND_REJECT => 'APPLY_REFUND_STATUS_REFUND_REJECT',
- ];
- public static function name($value)
- {
- if (!isset(self::$valueToName[$value])) {
- throw new UnexpectedValueException(sprintf(
- 'Enum %s has no name defined for value %s', __CLASS__, $value));
- }
- return self::$valueToName[$value];
- }
- public static function value($name)
- {
- $const = __CLASS__ . '::' . strtoupper($name);
- if (!defined($const)) {
- throw new UnexpectedValueException(sprintf(
- 'Enum %s has no value defined for name %s', __CLASS__, $name));
- }
- return constant($const);
- }
- }
|