com.wechat.pay.java.service.goldplan.model.ChangeCustomPageStatusResponse 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
//
// 特约商户点金计划管理API
//
// API version: 0.2.3
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.goldplan.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.SerializedName;
/** ChangeCustomPageStatusResponse */
public class ChangeCustomPageStatusResponse {
/** 特约商户号 说明:开通或关闭“商家自定义小票”的特约商户商户号,由微信支付生成并下发。 */
@SerializedName("sub_mchid")
private String subMchid;
public String getSubMchid() {
return subMchid;
}
public void setSubMchid(String subMchid) {
this.subMchid = subMchid;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChangeCustomPageStatusResponse {\n");
sb.append(" subMchid: ").append(toIndentedString(subMchid)).append("\n");
sb.append("}");
return sb.toString();
}
}