com.alipay.api.domain.MaterialModifyInfo Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 素材编辑模型
*
* @author auto create
* @since 1.0, 2019-09-06 10:27:10
*/
public class MaterialModifyInfo extends AlipayObject {
private static final long serialVersionUID = 7217877643317255491L;
/**
* 素材内容(素材地址或素材KEY)
*/
@ApiField("content")
private String content;
/**
* 素材类型
*/
@ApiField("type")
private String type;
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy