com.alipay.api.response.AlipayCommerceEducateStudentinfoShareResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.EduStudentInfoShareResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.educate.studentinfo.share response.
*
* @author auto create
* @since 1.0, 2016-07-19 14:49:22
*/
public class AlipayCommerceEducateStudentinfoShareResponse extends AlipayResponse {
private static final long serialVersionUID = 5293572394468245197L;
/**
* 学生信息
*/
@ApiField("student_info_share_result")
private EduStudentInfoShareResult studentInfoShareResult;
public void setStudentInfoShareResult(EduStudentInfoShareResult studentInfoShareResult) {
this.studentInfoShareResult = studentInfoShareResult;
}
public EduStudentInfoShareResult getStudentInfoShareResult( ) {
return this.studentInfoShareResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy