com.wechat.pay.java.service.payments.model.PromotionGoodsDetail 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 version: 1.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.payments.model;
import com.google.gson.annotations.SerializedName;
import com.wechat.pay.java.core.util.GsonUtil;
/** PromotionGoodsDetail */
public class PromotionGoodsDetail {
/** 商品编码 说明:商品编码 */
@SerializedName("goods_id")
private String goodsId;
/** 商品数量 说明:商品数量 */
@SerializedName("quantity")
private Integer quantity;
/** 商品价格 说明:商品价格 */
@SerializedName("unit_price")
private Integer unitPrice;
/** 商品优惠金额 说明:商品优惠金额 */
@SerializedName("discount_amount")
private Integer discountAmount;
/** 商品备注 说明:商品备注 */
@SerializedName("goods_remark")
private String goodsRemark;
public String getGoodsId() {
return goodsId;
}
public void setGoodsId(String goodsId) {
this.goodsId = goodsId;
}
public Integer getQuantity() {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public Integer getUnitPrice() {
return unitPrice;
}
public void setUnitPrice(Integer unitPrice) {
this.unitPrice = unitPrice;
}
public Integer getDiscountAmount() {
return discountAmount;
}
public void setDiscountAmount(Integer discountAmount) {
this.discountAmount = discountAmount;
}
public String getGoodsRemark() {
return goodsRemark;
}
public void setGoodsRemark(String goodsRemark) {
this.goodsRemark = goodsRemark;
}
@Override
public String toString() {
return GsonUtil.getGson().toJson(this);
}
}