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

com.alipay.api.domain.AlipayUserSportshealthQuestionnaireCompleteModel 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.40.21.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, 2024-12-06 18:05:03
 */
public class AlipayUserSportshealthQuestionnaireCompleteModel extends AlipayObject {

	private static final long serialVersionUID = 6547799453294453236L;

	/**
	 * 业务唯一标识
	 */
	@ApiField("biz_no")
	private String bizNo;

	/**
	 * 用于标记支付宝用户在应用下的唯一标识
	 */
	@ApiField("open_id")
	private String openId;

	/**
	 * 问卷调查结果
	 */
	@ApiField("survey_result")
	private String surveyResult;

	/**
	 * 调查类型
	 */
	@ApiField("survey_type")
	private String surveyType;

	/**
	 * 支付宝用户的userId。
	 */
	@ApiField("user_id")
	private String userId;

	public String getBizNo() {
		return this.bizNo;
	}
	public void setBizNo(String bizNo) {
		this.bizNo = bizNo;
	}

	public String getOpenId() {
		return this.openId;
	}
	public void setOpenId(String openId) {
		this.openId = openId;
	}

	public String getSurveyResult() {
		return this.surveyResult;
	}
	public void setSurveyResult(String surveyResult) {
		this.surveyResult = surveyResult;
	}

	public String getSurveyType() {
		return this.surveyType;
	}
	public void setSurveyType(String surveyType) {
		this.surveyType = surveyType;
	}

	public String getUserId() {
		return this.userId;
	}
	public void setUserId(String userId) {
		this.userId = userId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy