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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.39.218.ALL
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, 2020-05-28 18:55:14
 */
public class BenefitSource extends AlipayObject {

	private static final long serialVersionUID = 8588642117558477878L;

	/**
	 * 来源类型,比如CAMPAIG
	 */
	@ApiField("benefit_source_type")
	private String benefitSourceType;

	/**
	 * 10000455203
	 */
	@ApiField("benefit_source_value")
	private String benefitSourceValue;

	public String getBenefitSourceType() {
		return this.benefitSourceType;
	}
	public void setBenefitSourceType(String benefitSourceType) {
		this.benefitSourceType = benefitSourceType;
	}

	public String getBenefitSourceValue() {
		return this.benefitSourceValue;
	}
	public void setBenefitSourceValue(String benefitSourceValue) {
		this.benefitSourceValue = benefitSourceValue;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy