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

com.alipay.api.domain.AuthResourceContent 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, 2024-07-10 10:23:56
 */
public class AuthResourceContent extends AlipayObject {

	private static final long serialVersionUID = 3395387937345196492L;

	/**
	 * 激励,单位是g
	 */
	@ApiField("award_amount")
	private Long awardAmount;

	/**
	 * 人群
	 */
	@ApiField("group_type")
	private String groupType;

	public Long getAwardAmount() {
		return this.awardAmount;
	}
	public void setAwardAmount(Long awardAmount) {
		this.awardAmount = awardAmount;
	}

	public String getGroupType() {
		return this.groupType;
	}
	public void setGroupType(String groupType) {
		this.groupType = groupType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy