All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.NewsfeedMediaImg Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 发布动态的图片类型数据结构
 *
 * @author auto create
 * @since 1.0, 2016-10-26 17:43:37
 */
public class NewsfeedMediaImg extends AlipayObject {

	private static final long serialVersionUID = 8686454365617532796L;

	/**
	 * 图片高度
	 */
	@ApiField("height")
	private String height;

	/**
	 * 图片地址
	 */
	@ApiField("src")
	private String src;

	/**
	 * 图片宽度
	 */
	@ApiField("width")
	private String width;

	public String getHeight() {
		return this.height;
	}
	public void setHeight(String height) {
		this.height = height;
	}

	public String getSrc() {
		return this.src;
	}
	public void setSrc(String src) {
		this.src = src;
	}

	public String getWidth() {
		return this.width;
	}
	public void setWidth(String width) {
		this.width = width;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy