com.alipay.api.domain.AlipayOpenMessagetestCesSendModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 测试消息发送文档
*
* @author auto create
* @since 1.0, 2019-03-05 14:17:37
*/
public class AlipayOpenMessagetestCesSendModel extends AlipayObject {
private static final long serialVersionUID = 3235242933763463289L;
/**
* 测试
*/
@ApiListField("cop")
@ApiField("gavintest_new_levea_one")
private List cop;
/**
* 21
*/
@ApiListField("str")
@ApiField("string")
private List str;
public List getCop() {
return this.cop;
}
public void setCop(List cop) {
this.cop = cop;
}
public List getStr() {
return this.str;
}
public void setStr(List str) {
this.str = str;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy