using System;
using System.Collections.Generic;
using Top.Api.Util;
using Top.Api;
using Top.Api.DingTalk;
namespace DingTalk.Api.Request
{
///
/// TOP API: dingtalk.oapi.edu.homework.student.report.submit
///
public class OapiEduHomeworkStudentReportSubmitRequest : BaseDingTalkRequest
{
///
/// 扩展属性
///
public string Attributes { get; set; }
///
/// 业务编码
///
public string BizCode { get; set; }
///
/// 部门ID
///
public Nullable ClassId { get; set; }
///
/// 作业ID
///
public Nullable HwId { get; set; }
///
/// 作业报告
///
public string HwReport { get; set; }
///
/// 作业结果
///
public string HwResult { get; set; }
///
/// 学生ID
///
public string StudentId { get; set; }
///
/// 学生姓名
///
public string StudentName { get; set; }
#region IDingTalkRequest Members
public override string GetApiName()
{
return "dingtalk.oapi.edu.homework.student.report.submit";
}
public override string GetApiCallType()
{
return DingTalkConstants.CALL_TYPE_OAPI;
}
public override IDictionary GetParameters()
{
TopDictionary parameters = new TopDictionary();
parameters.Add("attributes", this.Attributes);
parameters.Add("biz_code", this.BizCode);
parameters.Add("class_id", this.ClassId);
parameters.Add("hw_id", this.HwId);
parameters.Add("hw_report", this.HwReport);
parameters.Add("hw_result", this.HwResult);
parameters.Add("student_id", this.StudentId);
parameters.Add("student_name", this.StudentName);
if (this.otherParams != null)
{
parameters.AddAll(this.otherParams);
}
return parameters;
}
public override void Validate()
{
RequestValidator.ValidateRequired("biz_code", this.BizCode);
RequestValidator.ValidateRequired("class_id", this.ClassId);
RequestValidator.ValidateRequired("hw_id", this.HwId);
RequestValidator.ValidateRequired("student_id", this.StudentId);
RequestValidator.ValidateRequired("student_name", this.StudentName);
}
#endregion
}
}