com.alipay.api.domain.McardStylInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The 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, 2017-06-06 17:13:14
*/
public class McardStylInfo extends AlipayObject {
private static final long serialVersionUID = 7328592441292766195L;
/**
* 背景图片Id,通过接口(alipay.offline.material.image.upload)上传图片
图片说明:2M以内,格式:bmp、png、jpeg、jpg、gif;
尺寸不小于1020*643px;
图片不得有圆角,不得拉伸变形
*/
@ApiField("background_id")
private String backgroundId;
/**
* 背景色
*/
@ApiField("bg_color")
private String bgColor;
/**
* logo的图片ID,通过接口(alipay.offline.material.image.upload)上传图片
图片说明:1M以内,格式bmp、png、jpeg、jpg、gif;
尺寸不小于500*500px的正方形;
请优先使用商家LOGO;
*/
@ApiField("logo_id")
private String logoId;
public String getBackgroundId() {
return this.backgroundId;
}
public void setBackgroundId(String backgroundId) {
this.backgroundId = backgroundId;
}
public String getBgColor() {
return this.bgColor;
}
public void setBgColor(String bgColor) {
this.bgColor = bgColor;
}
public String getLogoId() {
return this.logoId;
}
public void setLogoId(String logoId) {
this.logoId = logoId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy