public enum BusiFavorUseMethod extends Enum<BusiFavorUseMethod>
| Enum Constant and Description |
|---|
MINI_PROGRAMS
线上小程序核销,点击券“立即使用”跳转至配置的商家小程序(需要添加小程序appid和path)。
|
OFF_LINE
线下滴码核销,点击券“立即使用”跳转展示券二维码详情。
|
PAYMENT_CODE
微信支付付款码核销,点击券“立即使用”跳转至微信支付钱包付款码。
|
SELF_CONSUME
用户自助核销,点击券“立即使用”跳转至用户自助操作核销界面(当前暂不支持用户自助核销)。
|
| Modifier and Type | Method and Description |
|---|---|
static BusiFavorUseMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusiFavorUseMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusiFavorUseMethod OFF_LINE
public static final BusiFavorUseMethod MINI_PROGRAMS
public static final BusiFavorUseMethod PAYMENT_CODE
public static final BusiFavorUseMethod SELF_CONSUME
public static BusiFavorUseMethod[] values()
for (BusiFavorUseMethod c : BusiFavorUseMethod.values()) System.out.println(c);
public static BusiFavorUseMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.