NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceFixTaskCreate...

93 lines
3.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceFixTaskCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceFixTaskCreateModel : AopObject
{
/// <summary>
/// 应用场景: 用于在ruleScene规则场景下对提报问题进行二次分类。 如何获取:与业务对接同学沟通后确定。
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 提交工单时的联系人名称
/// </summary>
[XmlElement("contact")]
public string Contact { get; set; }
/// <summary>
/// 提报问题的联系人电话
/// </summary>
[XmlElement("contact_phone")]
public string ContactPhone { get; set; }
/// <summary>
/// 描述提报问题的详情。
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 定向开放场景中,可能同时支持多个业务场景,允许各业务场景自定义个性化提交的数据。数据格式请提前与业务接口人确定
/// </summary>
[XmlArray("extra")]
[XmlArrayItem("fix_ext_data")]
public List<FixExtData> Extra { get; set; }
/// <summary>
/// 如果工单包含图片等附件信息首先通过文件上传接口进行文件上传并从接口返回中获得id。此处构造的fileIds多个之间用英文","分隔。
/// </summary>
[XmlElement("file_ids")]
public string FileIds { get; set; }
/// <summary>
/// 特殊场景下需要直接指定任务处理方时使用(非必须)。 通常需要和问题分类id配合使用。
/// </summary>
[XmlElement("handler_id")]
public string HandlerId { get; set; }
/// <summary>
/// 对接系统中该任务的唯一标识幂等使用如果该id对应的工单已经创建则会报错。 如何获取:对接系统自行维护的需要创建工单的唯一标识。
/// </summary>
[XmlElement("outer_id")]
public string OuterId { get; set; }
/// <summary>
/// 对接系统自行设置自己的唯一标识。 如何获取:使用时需要与业务对接同学,确保系统名没有与现有的其他系统名重复。
/// </summary>
[XmlElement("outer_system")]
public string OuterSystem { get; set; }
/// <summary>
/// 提报问题的分类id。 如何获取:根据问题现象分类查询接口的查询结果。
/// </summary>
[XmlElement("problem_id")]
public long ProblemId { get; set; }
/// <summary>
/// 工单的业务类型。 枚举值:IoTMTN:IoT维保场景;jfMTN:生活缴费;C2B:C2B;riskControl:行业风险任务。
/// </summary>
[XmlElement("rule_scene")]
public string RuleScene { get; set; }
/// <summary>
/// 工单创建来源。对接方使用时请先与业务接口人沟通
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
/// <summary>
/// 用来标识任务类型。 枚举值:techConsult:技术咨询;malfunctionReport:设备报障
/// </summary>
[XmlElement("task_category")]
public string TaskCategory { get; set; }
}
}