com.wechat.pay.java.service.merchantexclusivecoupon.model.AssociateTradeInfoResponse 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.0.11
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.merchantexclusivecoupon.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.SerializedName;
/** AssociateTradeInfoResponse */
public class AssociateTradeInfoResponse {
/**
* 关联成功时间
* 说明:系统关联券成功的时间,遵循[rfc3339](https://datatracker.ietf.org/doc/html/rfc3339)标准格式,格式为yyyy-MM-DDTHH:mm:ss+TIMEZONE,yyyy-MM-DD表示年月日,T出现在字符串中,表示time元素的开头,HH:mm:ss表示时分秒,TIMEZONE表示时区(+08:00表示东八区时间,领先UTC
* 8小时,即北京时间)。例如:2015-05-20T13:29:35+08:00表示,北京时间2015年5月20日 13点29分35秒。
*/
@SerializedName("wechatpay_associate_time")
private String wechatpayAssociateTime;
public String getWechatpayAssociateTime() {
return wechatpayAssociateTime;
}
public void setWechatpayAssociateTime(String wechatpayAssociateTime) {
this.wechatpayAssociateTime = wechatpayAssociateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssociateTradeInfoResponse {\n");
sb.append(" wechatpayAssociateTime: ")
.append(toIndentedString(wechatpayAssociateTime))
.append("\n");
sb.append("}");
return sb.toString();
}
}