com.wechat.pay.java.service.weixinpayscanandride.model.OrderAmount 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: 1.0.0
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.weixinpayscanandride.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.SerializedName;
/** OrderAmount */
public class OrderAmount {
/** 订单金额 说明:订单总金额,单位为分,只能为整数,详见支付金额 */
@SerializedName("total")
private Long total;
/** 货币类型 说明:符合ISO 4217标准的三位字母代码,目前只支持人民币:CNY */
@SerializedName("currency")
private String currency;
public Long getTotal() {
return total;
}
public void setTotal(Long total) {
this.total = total;
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OrderAmount {\n");
sb.append(" total: ").append(toIndentedString(total)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append("}");
return sb.toString();
}
}