com.alipay.api.domain.FileInfo 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 文件信息对象
*
* @author auto create
* @since 1.0, 2021-05-07 20:39:26
*/
public class FileInfo extends AlipayObject {
private static final long serialVersionUID = 5581922344491259294L;
/**
* 文件类型,唯一值,枚举。 VIDEO=视频;VOICE=语音;PICTURE=图片;TEXT=文本
*/
@ApiField("data_type")
private String dataType;
/**
* 业务素材类型(例如:INTERACTIVE代表交互稿)
*/
@ApiField("file_biz_type")
private String fileBizType;
/**
* 文件地址url
*/
@ApiField("file_url")
private String fileUrl;
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public String getFileBizType() {
return this.fileBizType;
}
public void setFileBizType(String fileBizType) {
this.fileBizType = fileBizType;
}
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
}