com.wechat.pay.java.service.giftactivity.model.PaymentMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechatpay-java Show documentation
Show all versions of wechatpay-java Show documentation
A Java SDK for WeChat Pay APIv3
// Copyright 2021 Tencent Inc. All rights reserved.
//
// 支付有礼活动对外API
//
// No description provided (generated by Openapi Generator
// https://github.com/openapitools/openapi-generator)
//
// API version: 0.1.2
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.giftactivity.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/** PaymentMode */
public class PaymentMode {
/**
* 支付场景列表
* 说明:APP_SCENE:App场景;SWING_CARD:刷卡;NO_SECRET_SCENE:免密支付;MINIAPP_SCENE:小程序;FACE_PAY_SCENE:人脸支付;
* OTHER_SCENE:其他支付场景
*/
@SerializedName("payment_scene_list")
private List paymentSceneList;
public List getPaymentSceneList() {
return paymentSceneList;
}
public void setPaymentSceneList(List paymentSceneList) {
this.paymentSceneList = paymentSceneList;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentMode {\n");
sb.append(" paymentSceneList: ").append(toIndentedString(paymentSceneList)).append("\n");
sb.append("}");
return sb.toString();
}
}