diff --git a/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj b/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj index 64fc00d81..7bac65b00 100644 --- a/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj +++ b/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj @@ -3,7 +3,7 @@ netstandard2.0 true - 4.2.30 + 4.2.73 antopen zh 支付宝开放平台官方SDK,基于.Net Standard 2.0开发,支持.Net Framework 4.6.1、.Net Core 2.0及其以上版本。 diff --git a/AlipaySDKNet.Standard/DefaultAopClient.cs b/AlipaySDKNet.Standard/DefaultAopClient.cs index 6568bb2da..a6a21a159 100644 --- a/AlipaySDKNet.Standard/DefaultAopClient.cs +++ b/AlipaySDKNet.Standard/DefaultAopClient.cs @@ -29,7 +29,7 @@ public class DefaultAopClient : IAopClient /// /// 当前SDK版本号,SDK打包发布时会自动修改该值 /// - public const string SDK_VERSION = "alipay-sdk-net-4.2.30.ALL"; + public const string SDK_VERSION = "alipay-sdk-net-4.2.73.ALL"; private CertEnvironment certEnvironment; diff --git a/AlipaySDKNet.Standard/Domain/AlipayCommerceAirCallcenterTradeApplyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayCommerceAirCallcenterTradeApplyModel.cs new file mode 100644 index 000000000..2960c7ec8 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayCommerceAirCallcenterTradeApplyModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayCommerceAirCallcenterTradeApplyModel Data Structure. + /// + [Serializable] + public class AlipayCommerceAirCallcenterTradeApplyModel : AopObject + { + /// + /// 订单费用详情,用于在订单确认页面展示 + /// + [XmlElement("amount_detail")] + public string AmountDetail { get; set; } + + /// + /// 接口请求渠道编码,由支付宝提供 + /// + [XmlElement("channel")] + public string Channel { get; set; } + + /// + /// 接口版本号 + /// + [XmlElement("interface_version")] + public string InterfaceVersion { get; set; } + + /// + /// 用于标识操作模型,由支付宝配置提供 + /// + [XmlElement("op_code")] + public string OpCode { get; set; } + + /// + /// 场景的数据表示. json 数组格式,根据场景不同的模型传入不同参数,由支付宝负责提供参数集合 + /// + [XmlElement("order_detail")] + public string OrderDetail { get; set; } + + /// + /// 用于标识数据模型,由支付宝配置提供 + /// + [XmlElement("scene_code")] + public string SceneCode { get; set; } + + /// + /// 场景覆盖的目标人群标识,支持支付宝userId、身份证号、支付宝登录号、支付宝绑定手机号; + /// + [XmlElement("target_id")] + public string TargetId { get; set; } + + /// + /// 场景覆盖人群id类型 + /// + [XmlElement("target_id_type")] + public string TargetIdType { get; set; } + + /// + /// 交易请求参数 + /// + [XmlElement("trade_apply_params")] + public CallCenterTradeApplyParams TradeApplyParams { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs b/AlipaySDKNet.Standard/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs index 0760be644..03409ffe7 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs @@ -10,7 +10,7 @@ namespace Aop.Api.Domain public class AlipayCommerceIotSdarttoolMessageSendModel : AopObject { /// - /// 当离线消息挤压太多时,若设备上线将获取所有未过期的消息。推送太多消息对设备体验不太好,所以此字段用于设置消息是必达。当消息不是必达的 + /// 消息是否必达(immediate_msg为false时此字段设置有效),消息过期时间顺延3*24h. 建议使用expire_time设置消息过期时间 /// [XmlElement("bi_da")] public bool BiDa { get; set; } @@ -34,7 +34,7 @@ public class AlipayCommerceIotSdarttoolMessageSendModel : AopObject public string ItemId { get; set; } /// - /// 根据消息类型有不同的消息模板,传入的消息内容会是多个参数如云打印 {"contentParams":["打印内容"],"target":"打印编号-可选默认第一个","instructionFormat":"template或cmd"} cloud_print: 消息内容详见: https://alipay.open.taobao.com/docs/doc.htm?spm=a219a.7629140.0.0.46cf4b70bQj0aZ&treeId=662&articleId=117980&docType=1#s1 + /// 消息内容(xpaas_common:{"contentParams":["消息内容"]};audio_msg:{"contentParams":["语音内容"]};cloud_print:{"contentParams":["打印内容"],"target":"打印编号-可选默认第一个","instructionFormat":"template或cmd"}) /// [XmlElement("msg_content")] public string MsgContent { get; set; } @@ -46,19 +46,19 @@ public class AlipayCommerceIotSdarttoolMessageSendModel : AopObject public string MsgContentType { get; set; } /// - /// 消息过期时间戳(单位秒), 默认为当前时间延期3天有效。若消息在此时间之前未推送,将不再推送(必达消息会永久保留直到推送成功) + /// 消息过期时间戳(ms), 默认为当前时间顺延24h有效。当设备在线时消息服务过期之前尝试推送。最大过期时间顺延3*24h /// [XmlElement("msg_expire")] public long MsgExpire { get; set; } /// - /// 离线消息,当设备在线时消息优先发送级别,越大优先级域高(优先级为正整数)。 + /// 消息优先级(immediate_msg为false此字段设置有效)数字越大优先发送。 /// [XmlElement("msg_priority")] public long MsgPriority { get; set; } /// - /// 消息类型 + /// 消息类型(通用消息: xpaas_common;语音消息: audio_msg;云打印: cloud_print) /// [XmlElement("msg_type")] public string MsgType { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayCommerceMedicalCardQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayCommerceMedicalCardQueryModel.cs index f3e48c153..84052c963 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayCommerceMedicalCardQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayCommerceMedicalCardQueryModel.cs @@ -33,6 +33,12 @@ public class AlipayCommerceMedicalCardQueryModel : AopObject [XmlElement("extend_params")] public string ExtendParams { get; set; } + /// + /// 机构类型:医保(YB),人社(RS) 默认为RS + /// + [XmlElement("ins_type")] + public string InsType { get; set; } + /// /// 跳回的地址 /// @@ -44,5 +50,11 @@ public class AlipayCommerceMedicalCardQueryModel : AopObject /// [XmlElement("scene")] public string Scene { get; set; } + + /// + /// 版本号 + /// + [XmlElement("version_no")] + public string VersionNo { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportEtcApplySyncModel.cs b/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportEtcApplySyncModel.cs index 20bfabcb7..cb1f1ea7c 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportEtcApplySyncModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportEtcApplySyncModel.cs @@ -64,7 +64,7 @@ public class AlipayCommerceTransportEtcApplySyncModel : AopObject public string DeviceNo { get; set; } /// - /// 设备状态 0:未发货 1:已发货 2:运输中 3:已签收 4:已二发 5:已激活 6:退货中 7:已退货 8:换货中 9:设备已注销 + /// 设备状态 0:未发货 1:已发货 2:运输中 3:已签收 4:已二发 5:已激活 6:退货中 7:已退货 8:换货中 9:设备已注销 10:设备注销失败 11:已发卡 12:已发签 /// [XmlElement("device_status")] public string DeviceStatus { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportTaxiDriverSendModel.cs b/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportTaxiDriverSendModel.cs new file mode 100644 index 000000000..6185a0930 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportTaxiDriverSendModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayCommerceTransportTaxiDriverSendModel Data Structure. + /// + [Serializable] + public class AlipayCommerceTransportTaxiDriverSendModel : AopObject + { + /// + /// 支付宝账号 + /// + [XmlElement("alipay_account")] + public string AlipayAccount { get; set; } + + /// + /// 车牌号 + /// + [XmlElement("car_no")] + public string CarNo { get; set; } + + /// + /// 司机身份证号 + /// + [XmlElement("driver_cert_no")] + public string DriverCertNo { get; set; } + + /// + /// 司机工号 + /// + [XmlElement("driver_job_no")] + public string DriverJobNo { get; set; } + + /// + /// 司机姓名 + /// + [XmlElement("driver_name")] + public string DriverName { get; set; } + + /// + /// 司机手机号 + /// + [XmlElement("driver_phone")] + public string DriverPhone { get; set; } + + /// + /// 扩展信息 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 来源方,由支付宝分配 + /// + [XmlElement("source")] + public string Source { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportVehicleownerTransdataSyncModel.cs b/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportVehicleownerTransdataSyncModel.cs new file mode 100644 index 000000000..0a36c30a2 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayCommerceTransportVehicleownerTransdataSyncModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayCommerceTransportVehicleownerTransdataSyncModel Data Structure. + /// + [Serializable] + public class AlipayCommerceTransportVehicleownerTransdataSyncModel : AopObject + { + /// + /// 同步操作类型 + /// + [XmlElement("action_type")] + public string ActionType { get; set; } + + /// + /// 同步数据 + /// + [XmlElement("trans_data")] + public string TransData { get; set; } + + /// + /// 支付宝uid + /// + [XmlElement("uid")] + public string Uid { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualconfigGetModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualconfigGetModel.cs new file mode 100644 index 000000000..7bf97dcf6 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualconfigGetModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigGetModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualconfigGetModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualconfigSetModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualconfigSetModel.cs new file mode 100644 index 000000000..28f0d7049 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualconfigSetModel.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigSetModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualconfigSetModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 配制名称 + /// + [XmlElement("config_name")] + public string ConfigName { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 日期列表 + /// + [XmlArray("date")] + [XmlArrayItem("string")] + public List Date { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtaskAddModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtaskAddModel.cs new file mode 100644 index 000000000..d0ec78922 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtaskAddModel.cs @@ -0,0 +1,72 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtaskAddModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 下行场站配车数 + /// + [XmlElement("down_bus_cnt")] + public long DownBusCnt { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 排班任务 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + + /// + /// 排班 + /// + [XmlElement("time_table_pid")] + public string TimeTablePid { get; set; } + + /// + /// 上行场站配车数 + /// + [XmlElement("up_bus_cnt")] + public long UpBusCnt { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtaskQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtaskQueryModel.cs new file mode 100644 index 000000000..178395729 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtaskQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtaskQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeAddModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeAddModel.cs new file mode 100644 index 000000000..7eb918ac8 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeAddModel.cs @@ -0,0 +1,56 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtasktimeAddModel : AopObject + { + /// + /// 版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 客流预测任务id + /// + [XmlElement("bus_od_pid")] + public string BusOdPid { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 时刻表线路信息 + /// + [XmlArray("line_info")] + [XmlArrayItem("input_schedule_time")] + public List LineInfo { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 任务名称 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel.cs new file mode 100644 index 000000000..96472d616 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletasklistQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletasklistQueryModel.cs new file mode 100644 index 000000000..bf867e2b7 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletasklistQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletasklistQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletasklistQueryModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 任务类型: 枚举: 0:客流接口 1: 时刻表接口 2:排班接口 3:轮班接口 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskodAddModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskodAddModel.cs new file mode 100644 index 000000000..2af3ad706 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskodAddModel.cs @@ -0,0 +1,50 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskodAddModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 城市码 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 配制id + /// + [XmlElement("config_id")] + public string ConfigId { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 线路信息 + /// + [XmlArray("line_info")] + [XmlArrayItem("input_schedule_line")] + public List LineInfo { get; set; } + + /// + /// 任务描述 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskodQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskodQueryModel.cs new file mode 100644 index 000000000..3045949ae --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskodQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskodQueryModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftAddModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftAddModel.cs new file mode 100644 index 000000000..b6bc08008 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftAddModel.cs @@ -0,0 +1,75 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskshiftAddModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 待轮班的日期天数 + /// + [XmlElement("cycle_cnt")] + public long CycleCnt { get; set; } + + /// + /// 该线路配备的司机数 + /// + [XmlElement("driver_cnt")] + public long DriverCnt { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 待排班的时期列表,多个用逗号分隔 + /// + [XmlArray("shift_date_list")] + [XmlArrayItem("string")] + public List ShiftDateList { get; set; } + + /// + /// 任务名称 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + + /// + /// 排班任务id + /// + [XmlArray("work_schedule_pids")] + [XmlArrayItem("string")] + public List WorkSchedulePids { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel.cs new file mode 100644 index 000000000..5a41708c2 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletriptimeGetModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletriptimeGetModel.cs new file mode 100644 index 000000000..200909751 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusScheduletriptimeGetModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletriptimeGetModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletriptimeGetModel : AopObject + { + /// + /// mean/max/pert_95 + /// + [XmlElement("aggregate_type")] + public string AggregateType { get; set; } + + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 配制id + /// + [XmlElement("config_id")] + public string ConfigId { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 5/10/15/20/30/60 Long 时间粒度(单位分钟) + /// + [XmlElement("time_span")] + public long TimeSpan { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdDataQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdDataQueryModel.cs new file mode 100644 index 000000000..f4c5f27aa --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdDataQueryModel.cs @@ -0,0 +1,56 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataDataserviceAdDataQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataDataserviceAdDataQueryModel : AopObject + { + /// + /// 汇总数据广告层级类型,如PLAN-计划;GROUP-单元;CREATIVE-创意;USER-用户 + /// + [XmlElement("ad_level")] + public string AdLevel { get; set; } + + /// + /// 灯火平台提供给外部系统的访问token + /// + [XmlElement("biz_token")] + public string BizToken { get; set; } + + /// + /// 当ad_level='USER',该入参必填, 计费方式: CPC-按点击付费 CPM-按展示次数付费 CPD-按投放天数计费(包段) CPA-按转化效果计费 + /// + [XmlElement("charge_type")] + public string ChargeType { get; set; } + + /// + /// 数据查询开始时间,查询时间间隔不能大于30天,点时间格式:yyyyMMdd + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 外部平台导入广告库后,广告投放层级的对应的外部资源ID、商户PID,list最大长度为1000 + /// + [XmlArray("outer_id_list")] + [XmlArrayItem("string")] + public List OuterIdList { get; set; } + + /// + /// 数据查询类型,默认为ALL_SUM,如GROUP_SUM-日期范围内outer_id_list中根据id group by后进行数据求和;ALL_SUM-日期范围内outer_id_list中所有数据求和;DETAIL-数据详情 + /// + [XmlElement("query_type")] + public string QueryType { get; set; } + + /// + /// 数据查询开始时间,查询时间间隔不能大于30天,点时间格式:yyyyMMdd + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs index 2a1c3a87c..ad03b3c31 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs @@ -16,6 +16,18 @@ public class AlipayDataDataserviceAdGroupCreateormodifyModel : AopObject [XmlElement("biz_token")] public string BizToken { get; set; } + /// + /// 转化事件编号。若此字段不为空,则要求conversion_type也不为空,且此转化事件与转化事件类型conversion_type匹配 + /// + [XmlElement("conversion_id")] + public string ConversionId { get; set; } + + /// + /// 转化事件类型: CPA_TAO_XI:淘系店铺关注 CPA_TMALL_MEMBER_JOIN:淘系店铺入会 + /// + [XmlElement("conversion_type")] + public string ConversionType { get; set; } + /// /// 业务扩展参数字段,根据第三方需要使用,投放端只做存储并向检索端透传 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayEbppDetectCreateModel.cs b/AlipaySDKNet.Standard/Domain/AlipayEbppDetectCreateModel.cs index 484ef1e38..01f20d3f2 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayEbppDetectCreateModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayEbppDetectCreateModel.cs @@ -23,7 +23,7 @@ public class AlipayEbppDetectCreateModel : AopObject public string DataFromType { get; set; } /// - /// 外部业务标识 + /// 外部业务标识.如pipelineId /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } @@ -34,5 +34,17 @@ public class AlipayEbppDetectCreateModel : AopObject [XmlArray("service_list")] [XmlArrayItem("detect_service_entity")] public List ServiceList { get; set; } + + /// + /// 小程序appId + /// + [XmlElement("tinyapp_id")] + public string TinyappId { get; set; } + + /// + /// 小程序pid + /// + [XmlElement("tinyapp_partner_id")] + public string TinyappPartnerId { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/AlipayEbppDetectReportQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayEbppDetectReportQueryModel.cs index dab7a9ca7..fb8778441 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayEbppDetectReportQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayEbppDetectReportQueryModel.cs @@ -10,7 +10,19 @@ namespace Aop.Api.Domain public class AlipayEbppDetectReportQueryModel : AopObject { /// - /// 外部业务标识 + /// 业务类型 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 业务唯一id. 如迭代id + /// + [XmlElement("biz_unique_id")] + public string BizUniqueId { get; set; } + + /// + /// 外部业务标识.如pipeline id、蚂蚁流id等 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayEbppInspectNotifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayEbppInspectNotifyModel.cs new file mode 100644 index 000000000..553b8f118 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayEbppInspectNotifyModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayEbppInspectNotifyModel Data Structure. + /// + [Serializable] + public class AlipayEbppInspectNotifyModel : AopObject + { + /// + /// 引擎函数名称 + /// + [XmlElement("function_name")] + public string FunctionName { get; set; } + + /// + /// 任务id + /// + [XmlElement("job_id")] + public string JobId { get; set; } + + /// + /// 检测日志链接 + /// + [XmlElement("log_url")] + public string LogUrl { get; set; } + + /// + /// 引擎检测结果 + /// + [XmlElement("result")] + public string Result { get; set; } + + /// + /// 任务执行状态 + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 时间节点描述 + /// + [XmlElement("timing")] + public string Timing { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayEcoMycarParkingOrderPayModel.cs b/AlipaySDKNet.Standard/Domain/AlipayEcoMycarParkingOrderPayModel.cs index 03d592c3e..71a7b8ce2 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayEcoMycarParkingOrderPayModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayEcoMycarParkingOrderPayModel.cs @@ -40,7 +40,7 @@ public class AlipayEcoMycarParkingOrderPayModel : AopObject public bool IsAdvance { get; set; } /// - /// ISV停车场ID,由ISV定义的停车场标识,系统唯一,parking_id和out_parking_id不能同时为空 + /// ISV停车场ID,由ISV定义的停车场标识,系统唯一,必填 /// [XmlElement("out_parking_id")] public string OutParkingId { get; set; } @@ -52,7 +52,7 @@ public class AlipayEcoMycarParkingOrderPayModel : AopObject public string OutTradeNo { get; set; } /// - /// 支付宝停车平台ID,由支付宝定义的该停车场标识,系统唯一, parking_id和out_parking_id不能同时为空 + /// 支付宝停车平台ID,由支付宝定义的该停车场标识,系统唯一, 必填 /// [XmlElement("parking_id")] public string ParkingId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayFundTransAppPayModel.cs b/AlipaySDKNet.Standard/Domain/AlipayFundTransAppPayModel.cs index 4db19d259..1548a6232 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayFundTransAppPayModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayFundTransAppPayModel.cs @@ -16,11 +16,17 @@ public class AlipayFundTransAppPayModel : AopObject public string BizScene { get; set; } /// - /// JSON格式,传递业务扩展参数. 业务扩展字段,JSON格式。支持如下属性: sub_biz_scene 子场景,必填,传REDPACKET payer_binded_alipay_id 创建红包的商户会员绑定的支付宝userId,必填 + /// JSON格式,传递业务扩展参数. 业务扩展字段,JSON格式。支持如下属性: sub_biz_scene 子场景,必填,传REDPACKET payer_binded_alipay_uid 创建红包的商户会员绑定的支付宝userId,必填 /// [XmlElement("business_params")] public string BusinessParams { get; set; } + /// + /// 支付宝订单号 + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + /// /// 支付订单的标题,用于在收银台和消费记录展示 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayInsSceneDxDataQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayInsSceneDxDataQueryModel.cs new file mode 100644 index 000000000..0872ac65f --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayInsSceneDxDataQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayInsSceneDxDataQueryModel Data Structure. + /// + [Serializable] + public class AlipayInsSceneDxDataQueryModel : AopObject + { + /// + /// dx服务名 + /// + [XmlElement("dx_name")] + public string DxName { get; set; } + + /// + /// 请求参数 + /// + [XmlElement("param")] + public string Param { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayInsSceneSellerDataQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayInsSceneSellerDataQueryModel.cs new file mode 100644 index 000000000..b75db87c1 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayInsSceneSellerDataQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayInsSceneSellerDataQueryModel Data Structure. + /// + [Serializable] + public class AlipayInsSceneSellerDataQueryModel : AopObject + { + /// + /// 目标服务名称 + /// + [XmlElement("dx_name")] + public string DxName { get; set; } + + /// + /// 扩展字段 + /// + [XmlElement("extra_data")] + public string ExtraData { get; set; } + + /// + /// 机构产品号 + /// + [XmlElement("prod_no")] + public string ProdNo { get; set; } + + /// + /// 标准产品号 + /// + [XmlElement("sp_no")] + public string SpNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMarketingCampaignCommoneventApplyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMarketingCampaignCommoneventApplyModel.cs new file mode 100644 index 000000000..0ffe11684 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMarketingCampaignCommoneventApplyModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMarketingCampaignCommoneventApplyModel Data Structure. + /// + [Serializable] + public class AlipayMarketingCampaignCommoneventApplyModel : AopObject + { + /// + /// 与event关联的数据 + /// + [XmlElement("content_json")] + public string ContentJson { get; set; } + + /// + /// 事件类型 + /// + [XmlElement("event")] + public string Event { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeMemberremainingQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeMemberremainingQueryModel.cs new file mode 100644 index 000000000..b2b2ab492 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeMemberremainingQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeMemberremainingQueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeMemberremainingQueryModel : AopObject + { + /// + /// 该字段已废弃,请通过user_id查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePayCreateModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePayCreateModel.cs new file mode 100644 index 000000000..05cd146ae --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePayCreateModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePayCreateModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePayCreateModel : AopObject + { + /// + /// 该字段已废弃,请使用user_id字段查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 外部业务号,用于幂等控制一次充值行为 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 充享惠方案ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeProfileSetModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeProfileSetModel.cs new file mode 100644 index 000000000..4aea140cd --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeProfileSetModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeProfileSetModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeProfileSetModel : AopObject + { + /// + /// 充享惠卡模板设置,用户使用充享惠业务领卡后会在支付宝卡包中使用该模板配置创建卡入口 + /// + [XmlElement("card_template_config")] + public PayForPrivilegeCardTemplateConfig CardTemplateConfig { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanCreateModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanCreateModel.cs new file mode 100644 index 000000000..acf2a3966 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanCreateModel.cs @@ -0,0 +1,56 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanCreateModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePromotionplanCreateModel : AopObject + { + /// + /// 充享惠方案权益金部分,最小为0,权益金不超过5000元 + /// + [XmlElement("benefit")] + public string Benefit { get; set; } + + /// + /// 方案的失效时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 外部业务号,外部商户自行生成,用于幂等控制 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 充享惠方案有偿券部分,消费者充值成功后自动发放,如果不需要有偿券,指定空列表;有偿券的总金额不得超过10000元,且不得超过本金的2倍 + /// + [XmlArray("paid_voucher_list")] + [XmlArrayItem("pay_for_privilege_paid_voucher_config")] + public List PaidVoucherList { get; set; } + + /// + /// 充享惠方案本金部分,单位元,必须大于0,本金不超过5000元 + /// + [XmlElement("principal")] + public string Principal { get; set; } + + /// + /// 方案开始生效时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 创建方案后该方案的状态,ENABLED(启用), DISABLED(停用) + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanModifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanModifyModel.cs new file mode 100644 index 000000000..fb319ae19 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanModifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanModifyModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePromotionplanModifyModel : AopObject + { + /// + /// 充享惠方案的结束时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 充享惠方案ID,通过创建接口创建的ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + + /// + /// 充享惠方案开始时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 充享惠方案的状态,ENABLED(启用), DISABLED(停用) + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanQueryModel.cs new file mode 100644 index 000000000..66c7b4bfa --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegePromotionplanQueryModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanQueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePromotionplanQueryModel : AopObject + { + /// + /// 充享惠方案ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUselogBatchqueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUselogBatchqueryModel.cs new file mode 100644 index 000000000..bad770c86 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUselogBatchqueryModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeUselogBatchqueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeUselogBatchqueryModel : AopObject + { + /// + /// 业务结束时间,包含该业务时间点,开始时间和结束时间不能超过一年 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 该字段已废弃,请通过 user_id 进行查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 查询的页数,从1开始,最大100 + /// + [XmlElement("page_num")] + public string PageNum { get; set; } + + /// + /// 每页显示的大小,最小1,最大20 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 查询的业务开始时间,包含起始时间点,开始时间和结束时间不能超过一年 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUserrelationCreateModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUserrelationCreateModel.cs new file mode 100644 index 000000000..60c436188 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUserrelationCreateModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationCreateModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeUserrelationCreateModel : AopObject + { + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUserrelationQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUserrelationQueryModel.cs new file mode 100644 index 000000000..f377f52e3 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayMerchantPayforprivilegeUserrelationQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationQueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeUserrelationQueryModel : AopObject + { + /// + /// 该字段已废弃,请使用user_id查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs index d95612290..ec2dc26b2 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs @@ -16,7 +16,7 @@ public class AlipayOpenAppMiniTemplatemessageSendModel : AopObject public string Data { get; set; } /// - /// 用户发生的交易行为的交易号,或者用户在小程序产生表单提交的表单号,用于信息发送的校验 + /// 用户发生的交易行为的交易号,或者用户在小程序产生表单提交的表单号,或者在IOT刷脸后得到的ftoken等,用于信息发送的校验 /// [XmlElement("form_id")] public string FormId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs index 76f2e2704..d095b8a69 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs @@ -77,7 +77,7 @@ public class AlipayOpenMiniInnerversionAuditSubmitModel : AopObject public string Memo { get; set; } /// - /// 需要提交审核的小程序appId,面向一方场景,其他场景误用 + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs index 85bac53b2..ff60ccfe0 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs @@ -82,7 +82,7 @@ public class AlipayOpenMiniInnerversionBuildauditSubmitModel : AopObject public AuditLicenseInfo LicenseInfo { get; set; } /// - /// 小程序ID + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs index 7045f32df..0326b26ea 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs @@ -28,7 +28,7 @@ public class AlipayOpenMiniInnerversionInstantiationQueryModel : AopObject public string BundleId { get; set; } /// - /// 小程序appId,仅支持普通小程序、门店小程序 + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs index d30647bec..939b85f30 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs @@ -70,5 +70,12 @@ public class AlipayOpenMiniInnerversionPreviewUploadModel : AopObject /// [XmlElement("scene")] public string Scene { get; set; } + + /// + /// 分包信息 + /// + [XmlArray("sub_packages")] + [XmlArrayItem("sub_package")] + public List SubPackages { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs index 03f45e61c..45649982e 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs @@ -21,6 +21,12 @@ public class AlipayOpenMiniInnerversionTemplatebasedUploadModel : AopObject [XmlElement("build_extra_info")] public string BuildExtraInfo { get; set; } + /// + /// 构建方式TEMPLATE_CONFIG_PKG:模板配置化;TEMPLATE_EXTEND:模板继承 + /// + [XmlElement("build_type")] + public string BuildType { get; set; } + /// /// 淘宝:com.taobao.app /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs index 8a84b75ef..5725fa377 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs @@ -34,7 +34,7 @@ public class AlipayOpenMiniInnerversionTemplatedUploadModel : AopObject public string Ext { get; set; } /// - /// 需要构建的小程序appId + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs index f25eed695..a4830928f 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs @@ -22,7 +22,7 @@ public class AlipayOpenMiniInnerversionUpgradeModel : AopObject public string BundleId { get; set; } /// - /// 需要升级的实例小程序appId,仅用于一方链路,其他无用 + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipayOrderDataOpenapiResultInfo.cs b/AlipaySDKNet.Standard/Domain/AlipayOrderDataOpenapiResultInfo.cs index 4c2c62520..19cc755e6 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOrderDataOpenapiResultInfo.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOrderDataOpenapiResultInfo.cs @@ -67,12 +67,24 @@ public class AlipayOrderDataOpenapiResultInfo : AopObject [XmlArrayItem("order_logistics_information")] public List LogisticsInfoList { get; set; } + /// + /// 商户订单业务类型 + /// + [XmlElement("merchant_biz_type")] + public string MerchantBizType { get; set; } + /// /// 商户订单链接地址 /// [XmlElement("merchant_order_link_page")] public string MerchantOrderLinkPage { get; set; } + /// + /// 外部订单号 out_biz_no唯一对应一笔订单 + /// + [XmlElement("merchant_order_no")] + public string MerchantOrderNo { get; set; } + /// /// 商户的uid,即所需查询订单的partnerId /// @@ -97,6 +109,12 @@ public class AlipayOrderDataOpenapiResultInfo : AopObject [XmlElement("order_status")] public string OrderStatus { get; set; } + /// + /// 订单类型,SERVICE_ORDER:服务订单 -TRADE_ORDER:交易订单 + /// + [XmlElement("order_type")] + public string OrderType { get; set; } + /// /// 商户前置额外费用 /// @@ -115,6 +133,18 @@ public class AlipayOrderDataOpenapiResultInfo : AopObject [XmlElement("real_pay_amount")] public string RealPayAmount { get; set; } + /// + /// 门店信息 + /// + [XmlElement("shop_info")] + public OrderShopInfoResult ShopInfo { get; set; } + + /// + /// 凭证信息 + /// + [XmlElement("ticket_info")] + public TicketInfoResult TicketInfo { get; set; } + /// /// 小程序appid /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs index 4cb061dc4..4a2c43b2d 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs @@ -64,7 +64,7 @@ public class AlipayOverseasRemitBeneficialinfoQueryModel : AopObject public string SendAmount { get; set; } /// - /// 汇款人国家 + /// 汇款人国家,与sender_nationality不能同时为空 /// [XmlElement("send_country")] public string SendCountry { get; set; } @@ -86,5 +86,11 @@ public class AlipayOverseasRemitBeneficialinfoQueryModel : AopObject /// [XmlElement("sender_name")] public string SenderName { get; set; } + + /// + /// 汇款人国籍,与send_country不能同时为空 + /// + [XmlElement("sender_nationality")] + public string SenderNationality { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayCredentialsGetModel.cs b/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayCredentialsGetModel.cs new file mode 100644 index 000000000..a4ad03233 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayCredentialsGetModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecApplepayCredentialsGetModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecApplepayCredentialsGetModel : AopObject + { + /// + /// ECC算法、PKCS#7的签名。{Base 64 encoded signature from Apple authorizing the return of the credentials. PKCS#7 detached ECC signature covering the SHA 256 hash of the concatenation of the UTF-8 values of provisioningBundleIdentifier , lastUsedCredentialIdentifier , numberToFetch and hasZeroQRCodes .} + /// + [XmlElement("apple_signature")] + public string AppleSignature { get; set; } + + /// + /// 加密证书hash值,用于证书验证。 The public key hash of the leaf certificate of the barcodeEncryptionCertChain to indicate the public key that should be used for the encryption of payment credentials. + /// + [XmlElement("encryption_public_key_hash")] + public string EncryptionPublicKeyHash { get; set; } + + /// + /// 风控信息。 Fraud data provided by Apple as outlined in separate Fraud SIA document, if applicable + /// + [XmlElement("fraud_data")] + public CredentialsFraudData FraudData { get; set; } + + /// + /// hasZeroQRCodes,本地已经没有付款码。{This parameter indicates if there are anymore QR codes left on the device or not. True means that there are no more QR codes left on the device.} + /// + [XmlElement("has_zero_qr_codes")] + public bool HasZeroQrCodes { get; set; } + + /// + /// 上一个展示过的码id,-1个可做失效处理。{The identifier of the most recently consumed payment credential} + /// + [XmlElement("last_used_credential_identifier")] + public string LastUsedCredentialIdentifier { get; set; } + + /// + /// 希望下发的码个数。{The desired number of payment credentials to be returned} + /// + [XmlElement("number_to_fetch")] + public long NumberToFetch { get; set; } + + /// + /// 码类型。 {To enable QR code and barcode functionality} + /// + [XmlElement("payment_credential_type")] + public string PaymentCredentialType { get; set; } + + /// + /// SAM pass的bundleId,唯一标识一张卡片。{The identifier on the device for which the payment credentials are destined} + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayEstablishSetModel.cs b/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayEstablishSetModel.cs new file mode 100644 index 000000000..bf70f6779 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayEstablishSetModel.cs @@ -0,0 +1,45 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecApplepayEstablishSetModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecApplepayEstablishSetModel : AopObject + { + /// + /// 数字签名。 The Base 64 encoded signature generated on Apple server. PKCS#7 detached ECC signature covering the SHA 256 hash of the concatenation of the UTF-8 value of provisioningBundleIdentifier and certificatesRequested and Base 64 decoded values of barcodeEncryptionCertificate , deviceSignatureCertificate . + /// + [XmlElement("apple_signature")] + public string AppleSignature { get; set; } + + /// + /// JSON格式,base64的证书链List。只有leaf证书结构,能被imediately和root证书验过。第0个证书用于二维码加密使用。 Base 64 encoded X.509 encryption certificate chain containing the intermediate and leaf certificates. Encryption shall be performed using the first certificate in the list. + /// + [XmlArray("barcode_encryption_cert_chain")] + [XmlArrayItem("string")] + public List BarcodeEncryptionCertChain { get; set; } + + /// + /// JSON格式,base64的证书链List。只有leaf证书结构,能被imediately和root证书验过。第0个证书用于二维码上报加签使用。 Base 64 encoded X.509 signature certificate chain containing the intermediate and leaf certificates. The device will sign a payload each time it displays a QR code on the screen using the private key of this key pair. The public key of the first certificate should be used to verify that signature. + /// + [XmlArray("device_signature_cert_chain")] + [XmlArrayItem("string")] + public List DeviceSignatureCertChain { get; set; } + + /// + /// 风控信息。 Fraud data provided by Apple as outlined in separate Fraud SIA document, if applicable + /// + [XmlElement("fraud_data")] + public EstablishFraudData FraudData { get; set; } + + /// + /// SAM pass的bundleId,唯一标识一张卡片。 The identifier for which the feature is being enabled. + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs b/AlipaySDKNet.Standard/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs index 65cbd626d..16fdeb8fd 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs @@ -58,7 +58,7 @@ public class AlipayPcreditHuabeiSpayAuthConsultModel : AopObject public string PaymentMode { get; set; } /// - /// RECEIVE_IN_ONE_TIME:表达一次性提前收款服务 + /// RECEIVE_IN_ONE_TIME:表达一次性提前收款服务 RECEIVE_BY_PERIOD:按照周期收款 /// [XmlElement("receive_mode")] public string ReceiveMode { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/AlipaySecurityProdTamGetModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySecurityProdTamGetModel.cs index cf863bb9b..33348c1e7 100644 --- a/AlipaySDKNet.Standard/Domain/AlipaySecurityProdTamGetModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipaySecurityProdTamGetModel.cs @@ -21,6 +21,12 @@ public class AlipaySecurityProdTamGetModel : AopObject [XmlElement("condition")] public string Condition { get; set; } + /// + /// ext_info+不唯一+JSON形式的map,包含关于ta摘要算法等信息+枚举值:BASE64_OVER_SHA256;BASE64_OVER_SHA512;BASE64_OVER_SM3+OEM厂商获取TA时放在入参里+缺省值为BASE64_OVER_SHA256 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + /// /// sp_aik_pub(OEM厂商服务端分配给服务商的公钥)+唯一+由OEM厂商服务端生成,OEM厂商服务端在请求ta文件时会带上这个公钥,用于支付宝加密对称密钥返回给OEM厂商服务端+示例值由于输入长度限制并非真实的公钥长度 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestPlantApplyModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestPlantApplyModel.cs index 651b08898..a3c2d8a1d 100644 --- a/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestPlantApplyModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestPlantApplyModel.cs @@ -22,7 +22,7 @@ public class AlipaySocialAntforestPlantApplyModel : AopObject public string ApplyType { get; set; } /// - /// 接口扩展参数,商户可透传一些信息进来,后续扩展或者透传等作用 + /// 接口扩展参数,商户可透传一些信息进来,后续扩展或者透传等作用,json字符串目前需要传以下参数{"accountName":"钉钉",//账号名称,必填 "type":"class",// 合种类型:class/corp,必填 "corp":"111", // 公司名称 "cooperation":"222" , // 合种名称,type为class时为班级名称 } /// [XmlElement("ext_info")] public string ExtInfo { get; set; } @@ -33,6 +33,12 @@ public class AlipaySocialAntforestPlantApplyModel : AopObject [XmlElement("out_biz_no")] public string OutBizNo { get; set; } + /// + /// 兑换树种时当前合种的参与人数 + /// + [XmlElement("participant")] + public long Participant { get; set; } + /// /// 项目id,需要配合其他查询接口,查询到相关的项目之后使用。不限于树种,还包括保护地等 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestTreeSyncModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestTreeSyncModel.cs new file mode 100644 index 000000000..8908ce41c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialAntforestTreeSyncModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialAntforestTreeSyncModel Data Structure. + /// + [Serializable] + public class AlipaySocialAntforestTreeSyncModel : AopObject + { + /// + /// 待同步的证书的来源账户id + /// + [XmlElement("account_id")] + public string AccountId { get; set; } + + /// + /// 待同步时的证书id,有之前调用申请兑换树种成功时返回的证书id + /// + [XmlElement("certificate_id")] + public string CertificateId { get; set; } + + /// + /// JSON字符串,历史数据同步时accountName、type、participant必填,其他字段选填。其中accountName为账号名称,例如钉钉固定传“钉钉”,type为合种类型:班级或公司公益林(class/corp),cooperation为合种名称或班级名称,participant为兑换证书时合种的人数,非合种实时人数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 待同步证书的所属用户,蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialAntiepSceneSendModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialAntiepSceneSendModel.cs new file mode 100644 index 000000000..a451b9232 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialAntiepSceneSendModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialAntiepSceneSendModel Data Structure. + /// + [Serializable] + public class AlipaySocialAntiepSceneSendModel : AopObject + { + /// + /// 行为业务参数,用于业务流处理时所需参数转换,map 的 json格式 + /// + [XmlElement("action_biz_info")] + public string ActionBizInfo { get; set; } + + /// + /// 行为幂等id,用于防止重复提交 + /// + [XmlElement("action_biz_no")] + public string ActionBizNo { get; set; } + + /// + /// 上报行为的code码,用于服务端取出对应的场景信息并处理对应的后续行为 + /// + [XmlElement("action_code")] + public string ActionCode { get; set; } + + /// + /// 行为发生的时间戳,单位是ms + /// + [XmlElement("action_time")] + public long ActionTime { get; set; } + + /// + /// 请求类型,需传OPENAPI + /// + [XmlElement("request_type")] + public string RequestType { get; set; } + + /// + /// 场景类型,新增需找开发者协定值 + /// + [XmlElement("scene_code")] + public string SceneCode { get; set; } + + /// + /// 请求来源 + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceAddModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceAddModel.cs new file mode 100644 index 000000000..740f85a51 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceAddModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceAddModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceAddModel : AopObject + { + /// + /// 目标ID + /// + [XmlElement("quest_id")] + public string QuestId { get; set; } + + /// + /// 每日打卡提醒时间范围,小目标提醒时间会在这个范围随机设定,时间格式HH-MM,开始时间和结束时间-分割。 + /// + [XmlElement("remind_time_range")] + public string RemindTimeRange { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceModifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceModifyModel.cs new file mode 100644 index 000000000..6459dca2d --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceModifyModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceModifyModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceModifyModel : AopObject + { + /// + /// 小目标唯一ID + /// + [XmlElement("quest_id")] + public string QuestId { get; set; } + + /// + /// 每日打卡提醒时间范围,小目标提醒时间会在这个范围随机设定,时间格式HH-MM,开始时间和结束时间-分割。 传空表示取消提醒设置 + /// + [XmlElement("remind_time_range")] + public string RemindTimeRange { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 修改类型: 1 表示修改小目标提醒时间 + /// + [XmlElement("type")] + public long Type { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceQueryModel.cs new file mode 100644 index 000000000..b117bd382 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceQueryModel.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceQueryModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceQueryModel : AopObject + { + /// + /// 目标ID列表,列表长度不能超过20 + /// + [XmlArray("quest_ids")] + [XmlArrayItem("string")] + public List QuestIds { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceSubmitModel.cs b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceSubmitModel.cs new file mode 100644 index 000000000..77416f0d5 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipaySocialBaseQuestInstanceSubmitModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceSubmitModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceSubmitModel : AopObject + { + /// + /// 小目标实例ID + /// + [XmlElement("instance_id")] + public string InstanceId { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayTradeFastpayRefundQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayTradeFastpayRefundQueryModel.cs index 4f75562b0..eb0f04a1e 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayTradeFastpayRefundQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayTradeFastpayRefundQueryModel.cs @@ -1,5 +1,6 @@ using System; using System.Xml.Serialization; +using System.Collections.Generic; namespace Aop.Api.Domain { @@ -27,6 +28,13 @@ public class AlipayTradeFastpayRefundQueryModel : AopObject [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } + /// + /// 查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["refund_detail_item_list"] + /// + [XmlArray("query_options")] + [XmlArrayItem("string")] + public List QueryOptions { get; set; } + /// /// 支付宝交易号,和商户订单号不能同时为空 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayTradePayModel.cs b/AlipaySDKNet.Standard/Domain/AlipayTradePayModel.cs index e83a912bc..680ed39eb 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayTradePayModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayTradePayModel.cs @@ -131,6 +131,13 @@ public class AlipayTradePayModel : AopObject [XmlElement("promo_params")] public PromoParam PromoParams { get; set; } + /// + /// 返回查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["fund_bill_list","voucher_detail_list","discount_goods_detail"] + /// + [XmlArray("query_options")] + [XmlArrayItem("string")] + public List QueryOptions { get; set; } + /// /// 描述分账信息,json格式,其它说明详见分账说明 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayTradeQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayTradeQueryModel.cs index 78033d745..4ffe71d77 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayTradeQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayTradeQueryModel.cs @@ -23,7 +23,7 @@ public class AlipayTradeQueryModel : AopObject public string OutTradeNo { get; set; } /// - /// 查询选项,商户通过上送该字段来定制查询返回信息 + /// 查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["trade_settle_info","fund_bill_list","voucher_detail_list","discount_goods_detail"] /// [XmlArray("query_options")] [XmlArrayItem("string")] diff --git a/AlipaySDKNet.Standard/Domain/AlipayTradeRefundModel.cs b/AlipaySDKNet.Standard/Domain/AlipayTradeRefundModel.cs index 65751074c..2eaed1516 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayTradeRefundModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayTradeRefundModel.cs @@ -41,6 +41,13 @@ public class AlipayTradeRefundModel : AopObject [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } + /// + /// 查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["refund_detail_item_list"] + /// + [XmlArray("query_options")] + [XmlArrayItem("string")] + public List QueryOptions { get; set; } + /// /// 需要退款的金额,该金额不能大于订单金额,单位为元,支持两位小数 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleCreateModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleCreateModel.cs new file mode 100644 index 000000000..ab77128b2 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleCreateModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayProvisioningbundleCreateModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayProvisioningbundleCreateModel : AopObject + { + /// + /// 支付宝用户id + /// + [XmlElement("alipay_user_identifier")] + public string AlipayUserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleEffectModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleEffectModel.cs new file mode 100644 index 000000000..789dab2a7 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleEffectModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayProvisioningbundleEffectModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayProvisioningbundleEffectModel : AopObject + { + /// + /// 事件类型 + /// + [XmlElement("event_type")] + public string EventType { get; set; } + + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 卡的用户id(由固定前缀+支付宝用户id组成) + /// + [XmlElement("reference_identifier")] + public string ReferenceIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleQueryModel.cs new file mode 100644 index 000000000..7e347c1bd --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayProvisioningbundleQueryModel.cs @@ -0,0 +1,63 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayProvisioningbundleQueryModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayProvisioningbundleQueryModel : AopObject + { + /// + /// 加密证书链 + /// + [XmlArray("encryption_cert_chain")] + [XmlArrayItem("string")] + public List EncryptionCertChain { get; set; } + + /// + /// 加密版本号 + /// + [XmlElement("encryption_version")] + public string EncryptionVersion { get; set; } + + /// + /// 风控数据 + /// + [XmlElement("fraud_data")] + public FraudData FraudData { get; set; } + + /// + /// 地区 + /// + [XmlElement("locale")] + public string Locale { get; set; } + + /// + /// 隐私数据加密证书链 + /// + [XmlArray("private_encryption_cert_chain")] + [XmlArrayItem("string")] + public List PrivateEncryptionCertChain { get; set; } + + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 卡的用户id(由固定前缀+支付宝用户id组成) + /// + [XmlElement("reference_identifier")] + public string ReferenceIdentifier { get; set; } + + /// + /// 卡的x-pod + /// + [XmlElement("x_pod")] + public string XPod { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs index dd308d69f..13421c84d 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Domain [Serializable] public class AlipayUserCertifyIdentifyInfoQueryModel : AopObject { + /// + /// havana_id + /// + [XmlElement("havana_id")] + public string HavanaId { get; set; } + /// /// 登录ID /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyVerifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyVerifyModel.cs index 70f9ebe24..807f71572 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyVerifyModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayUserCertifyIdentifyVerifyModel.cs @@ -15,6 +15,18 @@ public class AlipayUserCertifyIdentifyVerifyModel : AopObject [XmlElement("biz_code")] public string BizCode { get; set; } + /// + /// havana_id + /// + [XmlElement("havana_id")] + public string HavanaId { get; set; } + + /// + /// 登录ID + /// + [XmlElement("logon_id")] + public string LogonId { get; set; } + /// /// 蚂蚁统一会员ID /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserMpointAuthbasePayModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserMpointAuthbasePayModel.cs new file mode 100644 index 000000000..09ef03682 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserMpointAuthbasePayModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointAuthbasePayModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointAuthbasePayModel : AopObject + { + /// + /// 业务子类型,由会员方面分配 + /// + [XmlElement("biz_sub_type")] + public string BizSubType { get; set; } + + /// + /// 业务类型,由会员方面分配 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 目标扣减积分数 + /// + [XmlElement("point")] + public string Point { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserMpointAuthbaseQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserMpointAuthbaseQueryModel.cs new file mode 100644 index 000000000..5e2f6454b --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserMpointAuthbaseQueryModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointAuthbaseQueryModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointAuthbaseQueryModel : AopObject + { + /// + /// 用户的支付宝账户ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserMpointPayModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserMpointPayModel.cs new file mode 100644 index 000000000..fa3c6a4bc --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserMpointPayModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointPayModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointPayModel : AopObject + { + /// + /// 业务子类型,由会员方面分配 + /// + [XmlElement("biz_sub_type")] + public string BizSubType { get; set; } + + /// + /// 业务类型,由会员方面分配 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 业务流水号,会用于幂等性校验,所以请保证每次请求的业务流水号的唯一性 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 需要扣减的积分数 + /// + [XmlElement("point")] + public string Point { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserMpointRefundModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserMpointRefundModel.cs new file mode 100644 index 000000000..20581123e --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserMpointRefundModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointRefundModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointRefundModel : AopObject + { + /// + /// 业务子类型,由会员方面分配 + /// + [XmlElement("biz_sub_type")] + public string BizSubType { get; set; } + + /// + /// 业务类型,由会员方面分配 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 业务流水号,用来映射需要回退积分的订单号,与调用扣减积分接口时传入的值一致。 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftConsultModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftConsultModel.cs index fa94d7e0b..6ffaa15e9 100644 --- a/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftConsultModel.cs +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftConsultModel.cs @@ -184,7 +184,7 @@ public class AntMerchantExpandIndirectZftConsultModel : AopObject public string SignTimeWithIsv { get; set; } /// - /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象 + /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象,site_type/site_url/site_name必填;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象,site_type/site_name必填 /// [XmlArray("sites")] [XmlArrayItem("site_info")] diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftCreateModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftCreateModel.cs index cb5c8f45c..c4dd0d579 100644 --- a/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftCreateModel.cs +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftCreateModel.cs @@ -184,7 +184,7 @@ public class AntMerchantExpandIndirectZftCreateModel : AopObject public string SignTimeWithIsv { get; set; } /// - /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象 + /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象,site_type/site_url/site_name必填;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象,site_type/site_name必填 /// [XmlArray("sites")] [XmlArrayItem("site_info")] diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftModifyModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftModifyModel.cs index 4fedaae4c..7da3a6cb5 100644 --- a/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftModifyModel.cs +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandIndirectZftModifyModel.cs @@ -160,7 +160,7 @@ public class AntMerchantExpandIndirectZftModifyModel : AopObject public string SignTimeWithIsv { get; set; } /// - /// 商户站点信息,包括网站、app、小程序。 商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象; 当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象 + /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象,site_type/site_url/site_name必填;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象,site_type/site_name必填 /// [XmlArray("sites")] [XmlArrayItem("site_info")] diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandShopBatchqueryModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandShopBatchqueryModel.cs new file mode 100644 index 000000000..223031046 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandShopBatchqueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandShopBatchqueryModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandShopBatchqueryModel : AopObject + { + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 插件业务场景code,预约为SHOP_SERVICE + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线上店ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceCreateModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceCreateModel.cs new file mode 100644 index 000000000..ab0524ba4 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceCreateModel.cs @@ -0,0 +1,75 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandStoreShopserviceCreateModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandStoreShopserviceCreateModel : AopObject + { + /// + /// 素材上传的安全云oss的accessKey + /// + [XmlElement("access_key_id")] + public string AccessKeyId { get; set; } + + /// + /// 场景服务名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 商家接收通知的手机号 + /// + [XmlElement("notify_phone")] + public string NotifyPhone { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 具体描述预约的业务场景 + /// + [XmlElement("service_desc")] + public string ServiceDesc { get; set; } + + /// + /// 线下门店的服务项目列表 + /// + [XmlArray("service_items")] + [XmlArrayItem("shop_service_item")] + public List ServiceItems { get; set; } + + /// + /// 服务时间信息 + /// + [XmlElement("service_time")] + public ServiceTimeInfo ServiceTime { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 服务人员 + /// + [XmlArray("shop_staffs")] + [XmlArrayItem("shop_staff_info")] + public List ShopStaffs { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceDeleteModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceDeleteModel.cs new file mode 100644 index 000000000..420ebaeaf --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceDeleteModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandStoreShopserviceDeleteModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandStoreShopserviceDeleteModel : AopObject + { + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 线下店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 场景服务ID + /// + [XmlElement("shop_service_id")] + public string ShopServiceId { get; set; } + + /// + /// SKU的ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + + /// + /// 线上门店ID,插件协议的入参 + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceModifyModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceModifyModel.cs new file mode 100644 index 000000000..76d3be79a --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantExpandStoreShopserviceModifyModel.cs @@ -0,0 +1,81 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandStoreShopserviceModifyModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandStoreShopserviceModifyModel : AopObject + { + /// + /// 测试的场景服务名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 商家接收通知的手机号 + /// + [XmlElement("notify_phone")] + public string NotifyPhone { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 具体描述预约的业务场景 + /// + [XmlElement("service_desc")] + public string ServiceDesc { get; set; } + + /// + /// 线下门店的服务项目列表 + /// + [XmlArray("service_items")] + [XmlArrayItem("shop_service_item")] + public List ServiceItems { get; set; } + + /// + /// 服务时间信息 + /// + [XmlElement("service_time")] + public ServiceTimeInfo ServiceTime { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 场景服务ID + /// + [XmlElement("shop_service_id")] + public string ShopServiceId { get; set; } + + /// + /// 服务人员 + /// + [XmlArray("shop_staffs")] + [XmlArrayItem("shop_staff_info")] + public List ShopStaffs { get; set; } + + /// + /// 规格ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreBatchqueryModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreBatchqueryModel.cs new file mode 100644 index 000000000..1fb86d344 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreBatchqueryModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreBatchqueryModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreBatchqueryModel : AopObject + { + /// + /// 结束时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 订单状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 开始时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreCreateModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreCreateModel.cs new file mode 100644 index 000000000..f083dbab0 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreCreateModel.cs @@ -0,0 +1,87 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreCreateModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreCreateModel : AopObject + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 联系电话 + /// + [XmlElement("contact_phone")] + public string ContactPhone { get; set; } + + /// + /// 扩展参数: Ext_ArrivedTime : 到店时间 + /// + [XmlArray("ext")] + [XmlArrayItem("order_ext")] + public List Ext { get; set; } + + /// + /// 订单相关的商品信息 + /// + [XmlArray("goods_info_list")] + [XmlArrayItem("store_order_good")] + public List GoodsInfoList { get; set; } + + /// + /// 订单超时时间,默认60分钟 + /// + [XmlElement("invalid_time")] + public long InvalidTime { get; set; } + + /// + /// 订单的描述 + /// + [XmlElement("memo")] + public string Memo { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 卖家id + /// + [XmlElement("seller_id")] + public string SellerId { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + + /// + /// 姓名 + /// + [XmlElement("user_name")] + public string UserName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreQueryModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreQueryModel.cs new file mode 100644 index 000000000..e351b818c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreQueryModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreQueryModel : AopObject + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreSyncModel.cs b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreSyncModel.cs new file mode 100644 index 000000000..1b082f10b --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntMerchantOrderStoreSyncModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreSyncModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreSyncModel : AopObject + { + /// + /// 状态相关的描述 + /// + [XmlElement("description")] + public string Description { get; set; } + + /// + /// 状态类型 + /// + [XmlElement("event_type")] + public string EventType { get; set; } + + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntfortuneQuotationResearchdataQueryModel.cs b/AlipaySDKNet.Standard/Domain/AntfortuneQuotationResearchdataQueryModel.cs new file mode 100644 index 000000000..b59e93742 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AntfortuneQuotationResearchdataQueryModel.cs @@ -0,0 +1,63 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntfortuneQuotationResearchdataQueryModel Data Structure. + /// + [Serializable] + public class AntfortuneQuotationResearchdataQueryModel : AopObject + { + /// + /// 需要获取数据的结束时间 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 预留的扩展字段,json格式。 + /// + [XmlElement("ext")] + public string Ext { get; set; } + + /// + /// 字段名称,需要访问的表中哪些字段。比如open代表开盘价 + /// + [XmlArray("fields")] + [XmlArrayItem("string")] + public List Fields { get; set; } + + /// + /// 选择性参数,用于附带一些查询条件。 + /// + [XmlElement("opt")] + public string Opt { get; set; } + + /// + /// 请求唯一id,用于排查问题 + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 需要获取数据的开始时间 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 对象唯一标识代码,比如股票就是600000.SH,基金就是003003 + /// + [XmlArray("symbols")] + [XmlArrayItem("string")] + public List Symbols { get; set; } + + /// + /// 表明需要访问的金融信息数据哪张表 + /// + [XmlElement("table")] + public string Table { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AnttechAiCvOcrBusinesslicenseIdentifyModel.cs b/AlipaySDKNet.Standard/Domain/AnttechAiCvOcrBusinesslicenseIdentifyModel.cs new file mode 100644 index 000000000..6219babaa --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AnttechAiCvOcrBusinesslicenseIdentifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechAiCvOcrBusinesslicenseIdentifyModel Data Structure. + /// + [Serializable] + public class AnttechAiCvOcrBusinesslicenseIdentifyModel : AopObject + { + /// + /// 文件二进制内容 + base64 + /// + [XmlElement("image_raw")] + public string ImageRaw { get; set; } + + /// + /// 图片下载url + /// + [XmlElement("image_url")] + public string ImageUrl { get; set; } + + /// + /// 服务调用来源(需要咨询服务提供方) + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 单次调用唯一标示,用于异常问题排查,调用方需要负责生成并且记录在调用日志里 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AnttechAiCvOcrVatinvoiceIdentifyModel.cs b/AlipaySDKNet.Standard/Domain/AnttechAiCvOcrVatinvoiceIdentifyModel.cs new file mode 100644 index 000000000..b7a559995 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AnttechAiCvOcrVatinvoiceIdentifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechAiCvOcrVatinvoiceIdentifyModel Data Structure. + /// + [Serializable] + public class AnttechAiCvOcrVatinvoiceIdentifyModel : AopObject + { + /// + /// 文件二进制内容 + base64 + /// + [XmlElement("image_raw")] + public string ImageRaw { get; set; } + + /// + /// 图片下载url + /// + [XmlElement("image_url")] + public string ImageUrl { get; set; } + + /// + /// 服务调用来源(需要咨询服务提供方) + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 单次调用唯一标示,用于异常问题排查,调用方需要负责生成并且记录在调用日志里 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel.cs b/AlipaySDKNet.Standard/Domain/AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel.cs new file mode 100644 index 000000000..95a839926 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel Data Structure. + /// + [Serializable] + public class AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel : AopObject + { + /// + /// 路由方法的参数 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 方法路由 + /// + [XmlElement("method_name")] + public string MethodName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AssetReverseDetail.cs b/AlipaySDKNet.Standard/Domain/AssetReverseDetail.cs index 695542e92..a51a49631 100644 --- a/AlipaySDKNet.Standard/Domain/AssetReverseDetail.cs +++ b/AlipaySDKNet.Standard/Domain/AssetReverseDetail.cs @@ -32,5 +32,11 @@ public class AssetReverseDetail : AopObject /// [XmlElement("goods_status")] public string GoodsStatus { get; set; } + + /// + /// 地址是否修改成功标志;取消/退货 不填 地址修改 必填 + /// + [XmlElement("success")] + public bool Success { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/AttachmentExplain.cs b/AlipaySDKNet.Standard/Domain/AttachmentExplain.cs index 3f7ed2e7b..b79ed4309 100644 --- a/AlipaySDKNet.Standard/Domain/AttachmentExplain.cs +++ b/AlipaySDKNet.Standard/Domain/AttachmentExplain.cs @@ -11,7 +11,7 @@ namespace Aop.Api.Domain public class AttachmentExplain : AopObject { /// - /// 是否允许上传更多附件 (collect_attachement值为true时必填) + /// 允许上传更多附件。开启后,除了“附件列表”中指定的内容,签署人可自由上传之多10张图片。默认值为false /// [XmlElement("allow_more_uploads")] public bool AllowMoreUploads { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/BccEventDetail.cs b/AlipaySDKNet.Standard/Domain/BccEventDetail.cs new file mode 100644 index 000000000..dc3174b85 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/BccEventDetail.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BccEventDetail Data Structure. + /// + [Serializable] + public class BccEventDetail : AopObject + { + /// + /// 活动id + /// + [XmlElement("activity_id")] + public string ActivityId { get; set; } + + /// + /// 事件结果标识:true/false + /// + [XmlElement("complete_tag")] + public bool CompleteTag { get; set; } + + /// + /// 合约单号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 事件内容 + /// + [XmlElement("event_conent")] + public string EventConent { get; set; } + + /// + /// 事件发生日期,如打卡日期 + /// + [XmlElement("event_day")] + public string EventDay { get; set; } + + /// + /// 事件类型:用来记录事件类型,如钉钉打卡 + /// + [XmlElement("event_type")] + public string EventType { get; set; } + + /// + /// 记录系统创建时间 + /// + [XmlElement("gm_create")] + public string GmCreate { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 芝麻roleId + /// + [XmlElement("zm_role_id")] + public string ZmRoleId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/BccSubjectDetail.cs b/AlipaySDKNet.Standard/Domain/BccSubjectDetail.cs new file mode 100644 index 000000000..99de25518 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/BccSubjectDetail.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BccSubjectDetail Data Structure. + /// + [Serializable] + public class BccSubjectDetail : AopObject + { + /// + /// 标的完成值 + /// + [XmlElement("completions")] + public string Completions { get; set; } + + /// + /// 当前值 + /// + [XmlElement("current_value")] + public string CurrentValue { get; set; } + + /// + /// 该标的对应的事项 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 标的id + /// + [XmlElement("subject_id")] + public string SubjectId { get; set; } + + /// + /// 标的类型 + /// + [XmlElement("subject_type")] + public string SubjectType { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/CallCenterTradeApplyParams.cs b/AlipaySDKNet.Standard/Domain/CallCenterTradeApplyParams.cs new file mode 100644 index 000000000..cb5bea4aa --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/CallCenterTradeApplyParams.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CallCenterTradeApplyParams Data Structure. + /// + [Serializable] + public class CallCenterTradeApplyParams : AopObject + { + /// + /// 系统商编号,该参数作为系统商返佣数据提取的依据,请填写系统商签约协议的PID + /// + [XmlElement("broker_id")] + public string BrokerId { get; set; } + + /// + /// 买家姓名 + /// + [XmlElement("buyer_name")] + public string BuyerName { get; set; } + + /// + /// 货币符号 + /// + [XmlElement("currency")] + public string Currency { get; set; } + + /// + /// 设置未付款支付宝订单的超时时间,一旦超时,该笔订单就会自动失效。当商户调用接口时开始计时。取值精确至秒,格式为yyyy-MM-dd HH:mm:ss。 + /// + [XmlElement("expire_time")] + public string ExpireTime { get; set; } + + /// + /// 第三方唯一序列号, 64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复 + /// + [XmlElement("out_trade_no")] + public string OutTradeNo { get; set; } + + /// + /// 优惠参数,用于传递营销信息。传递参数时,请所在行业的业务人员确认。 + /// + [XmlElement("promo_params")] + public string PromoParams { get; set; } + + /// + /// 交易标题/订单标题 + /// + [XmlElement("subject")] + public string Subject { get; set; } + + /// + /// 订单总金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000] + /// + [XmlElement("total_amount")] + public string TotalAmount { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/CardInstanceDO.cs b/AlipaySDKNet.Standard/Domain/CardInstanceDO.cs new file mode 100644 index 000000000..c8e7711f6 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/CardInstanceDO.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CardInstanceDO Data Structure. + /// + [Serializable] + public class CardInstanceDO : AopObject + { + /// + /// 小目标卡片Id + /// + [XmlElement("card_id")] + public string CardId { get; set; } + + /// + /// 用户获得卡片的当前星级 + /// + [XmlElement("level")] + public long Level { get; set; } + + /// + /// 卡片最大星级 + /// + [XmlElement("max_level")] + public long MaxLevel { get; set; } + + /// + /// 小目标卡片名称 + /// + [XmlElement("name")] + public string Name { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/CardPromoDO.cs b/AlipaySDKNet.Standard/Domain/CardPromoDO.cs new file mode 100644 index 000000000..26cb95bad --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/CardPromoDO.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CardPromoDO Data Structure. + /// + [Serializable] + public class CardPromoDO : AopObject + { + /// + /// 卡片Id + /// + [XmlElement("card_id")] + public string CardId { get; set; } + + /// + /// 卡片星级 + /// + [XmlElement("card_level")] + public long CardLevel { get; set; } + + /// + /// 是否限时权益 + /// + [XmlElement("limit")] + public bool Limit { get; set; } + + /// + /// 权益图标 + /// + [XmlElement("promo_icon")] + public string PromoIcon { get; set; } + + /// + /// 权益名称 + /// + [XmlElement("promo_title")] + public string PromoTitle { get; set; } + + /// + /// 用户是否领取了该权益 + /// + [XmlElement("received")] + public bool Received { get; set; } + + /// + /// 目标打卡次数,打卡target_mark_count天可以获取该权益 + /// + [XmlElement("target_mark_count")] + public long TargetMarkCount { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/CloudbusCommonResult.cs b/AlipaySDKNet.Standard/Domain/CloudbusCommonResult.cs new file mode 100644 index 000000000..fda5a6e61 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/CloudbusCommonResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CloudbusCommonResult Data Structure. + /// + [Serializable] + public class CloudbusCommonResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 数据字符 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ConfigInfo.cs b/AlipaySDKNet.Standard/Domain/ConfigInfo.cs index f212b2e70..4fb661fca 100644 --- a/AlipaySDKNet.Standard/Domain/ConfigInfo.cs +++ b/AlipaySDKNet.Standard/Domain/ConfigInfo.cs @@ -47,6 +47,12 @@ public class ConfigInfo : AopObject [XmlElement("jump_url")] public string JumpUrl { get; set; } + /// + /// 商户小程序签署地址(signModel字段值为1时 必填) + /// + [XmlElement("merchant_mini_sign_url")] + public string MerchantMiniSignUrl { get; set; } + /// /// 回调地址,签署的过程和签署完成都会回调。 /// @@ -64,5 +70,11 @@ public class ConfigInfo : AopObject /// [XmlElement("serial_no")] public string SerialNo { get; set; } + + /// + /// 签署方式 0-e签宝小程序签署 1-商户小程序签署 默认0 + /// + [XmlElement("sign_model")] + public long SignModel { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/ConversionDataDetail.cs b/AlipaySDKNet.Standard/Domain/ConversionDataDetail.cs new file mode 100644 index 000000000..683c88a25 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ConversionDataDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ConversionDataDetail Data Structure. + /// + [Serializable] + public class ConversionDataDetail : AopObject + { + /// + /// 转化事件id + /// + [XmlElement("conversion_id")] + public string ConversionId { get; set; } + + /// + /// 转化事件结果 + /// + [XmlElement("conversion_result")] + public string ConversionResult { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/CreativeDetail.cs b/AlipaySDKNet.Standard/Domain/CreativeDetail.cs index 82e9935b9..192d01e77 100644 --- a/AlipaySDKNet.Standard/Domain/CreativeDetail.cs +++ b/AlipaySDKNet.Standard/Domain/CreativeDetail.cs @@ -16,12 +16,30 @@ public class CreativeDetail : AopObject [XmlElement("action_type")] public string ActionType { get; set; } + /// + /// 创意最新审核工单号 + /// + [XmlElement("audit_order_id")] + public string AuditOrderId { get; set; } + /// /// 创意分组标识,多个创意可按业务逻辑标识为一个分组 /// [XmlElement("batch_tag")] public string BatchTag { get; set; } + /// + /// 创意点击量 + /// + [XmlElement("click")] + public long Click { get; set; } + + /// + /// 创意消费数据,单元:分 + /// + [XmlElement("cost")] + public long Cost { get; set; } + /// /// 广告投放平台生成的创意ID /// @@ -60,6 +78,12 @@ public class CreativeDetail : AopObject [XmlArrayItem("material_detail")] public List ImgList { get; set; } + /// + /// 创意展现量 + /// + [XmlElement("impression")] + public long Impression { get; set; } + /// /// 门店LBS信息,目前仅口碑使用,格式为:经度:纬度:半径(单位:KM,无半径限制直接设置为0) /// diff --git a/AlipaySDKNet.Standard/Domain/CredentialsFraudData.cs b/AlipaySDKNet.Standard/Domain/CredentialsFraudData.cs new file mode 100644 index 000000000..a8ad8e66c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/CredentialsFraudData.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CredentialsFraudData Data Structure. + /// + [Serializable] + public class CredentialsFraudData : AopObject + { + /// + /// Wallet所在设备的设备id映射的uuid。 + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 生物核身是否可获取。 true if device is capable of biometric authentication, otherwise false + /// + [XmlElement("is_biometric_capable")] + public string IsBiometricCapable { get; set; } + + /// + /// Wallet登录icloud账户id映射的uuid。 + /// + [XmlElement("user_identifier")] + public string UserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/CredentialsResponseHeader.cs b/AlipaySDKNet.Standard/Domain/CredentialsResponseHeader.cs new file mode 100644 index 000000000..c6e3abcc7 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/CredentialsResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CredentialsResponseHeader Data Structure. + /// + [Serializable] + public class CredentialsResponseHeader : AopObject + { + /// + /// 200=成功,400=请求错误,403=bundle查询不到。 Status code used to indicate an error, or "200" for success. + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + + /// + /// Not parsed programmatically. Example "Downstream system offline". + /// + [XmlElement("status_message")] + public string StatusMessage { get; set; } + + /// + /// Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions. + /// + [XmlElement("sub_status_code")] + public string SubStatusCode { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/DataDetail.cs b/AlipaySDKNet.Standard/Domain/DataDetail.cs new file mode 100644 index 000000000..33be4ed6c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/DataDetail.cs @@ -0,0 +1,50 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// DataDetail Data Structure. + /// + [Serializable] + public class DataDetail : AopObject + { + /// + /// 数据汇总时间,格式:yyyyMMdd + /// + [XmlElement("biz_date")] + public string BizDate { get; set; } + + /// + /// 点击量 + /// + [XmlElement("click")] + public long Click { get; set; } + + /// + /// 投放转化数据 + /// + [XmlArray("conversion_data_list")] + [XmlArrayItem("conversion_data_detail")] + public List ConversionDataList { get; set; } + + /// + /// 消费,单元:分 + /// + [XmlElement("cost")] + public long Cost { get; set; } + + /// + /// 展现量 + /// + [XmlElement("impression")] + public long Impression { get; set; } + + /// + /// 外部平台导入广告库后,广告投放对应的外部资源ID + /// + [XmlElement("outer_id")] + public string OuterId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/DetectServiceEntity.cs b/AlipaySDKNet.Standard/Domain/DetectServiceEntity.cs index 18d9c362a..5aec0360f 100644 --- a/AlipaySDKNet.Standard/Domain/DetectServiceEntity.cs +++ b/AlipaySDKNet.Standard/Domain/DetectServiceEntity.cs @@ -11,45 +11,45 @@ namespace Aop.Api.Domain public class DetectServiceEntity : AopObject { /// - /// 业务唯一id + /// 业务唯一id,如迭代id等 /// [XmlElement("biz_uniq_id")] public string BizUniqId { get; set; } /// - /// 待检测的文本类型 + /// 该字段可选 /// [XmlElement("content")] public string Content { get; set; } /// - /// 检测类型:content_diacrisis-内容检测,load_test-网页性能检测,vulnerabilities_scan-漏洞检测,res_Consumption资源流耗检测. 当content或者pic_url_list有值时,只能选择content_diacrisis;当service有值时,可以选择全部类型。 + /// 固定为oblisk_detect_instant /// [XmlArray("detect_type_list")] [XmlArrayItem("string")] public List DetectTypeList { get; set; } /// - /// 自定义扩展信息,JSON字符串。 如果detect_type_list包含res_Consumption资源流耗检测,则该字段可以填写流耗检测相关指标信息。(avgImgSize表示页面平均图片大小指标,单位KB;pageSize表示页面大小指标,单位KB;resCheckRela表示上面两个指标逻辑关系,取值or表示或,取值and表示且) + /// 扩展信息。JSON字符串。如果是小程序,则必须传version属性。必须 /// [XmlElement("extend_info")] public string ExtendInfo { get; set; } /// - /// 图片url列表 + /// 该字段可选 /// [XmlArray("pic_url_list")] [XmlArrayItem("string")] public List PicUrlList { get; set; } /// - /// 待检测的链接,必须是有效的url + /// 服务url。必须。 1)如果是整个小程序的诊断(伙伴、云测都是此种情况),传appId|version,如.2019082366379626|2.5.33 2)如果是某个小程序页面的诊断,传该页面的具体路径: alipays://platformapi/startapp?appId=2018091261350219&page=/pages/h5pages/h5pages 3)如果是H5,传url, 如https://www.baidu.com /// [XmlElement("service")] public string Service { get; set; } /// - /// 描述service,content,pic_url_list的名称信息,方便定位问题 + /// 小程序名称,或者H5服务名称。必须。 /// [XmlElement("title")] public string Title { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/EncryptedPaymentCredential.cs b/AlipaySDKNet.Standard/Domain/EncryptedPaymentCredential.cs new file mode 100644 index 000000000..3a82027b9 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/EncryptedPaymentCredential.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// EncryptedPaymentCredential Data Structure. + /// + [Serializable] + public class EncryptedPaymentCredential : AopObject + { + /// + /// 码值密文。{Base64 encrypted data} + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 加密产生的临时公钥。 {Base64 encoded ephemeral public key} + /// + [XmlElement("ephemeral_public_key")] + public string EphemeralPublicKey { get; set; } + + /// + /// 加密用的WAGU秘钥公钥Hash。 {Base64 encoded SHA-256 hash of the encoded public key used to encrypt} + /// + [XmlElement("public_key_hash")] + public string PublicKeyHash { get; set; } + + /// + /// 加密版本。{Encryption version. } {ECC椭圆曲线算法+DH交换秘钥。Elliptic Curve Cryptography Version 2} + /// + [XmlElement("version")] + public string Version { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/EstablishFraudData.cs b/AlipaySDKNet.Standard/Domain/EstablishFraudData.cs new file mode 100644 index 000000000..03c9bd271 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/EstablishFraudData.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// EstablishFraudData Data Structure. + /// + [Serializable] + public class EstablishFraudData : AopObject + { + /// + /// Wallet所在设备的设备id映射的uuid。 + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 生物核身是否可获取。 true if device is capable of biometric authentication, otherwise false + /// + [XmlElement("is_biometric_capable")] + public string IsBiometricCapable { get; set; } + + /// + /// Wallet登录icloud账户id映射的uuid。 + /// + [XmlElement("user_identifier")] + public string UserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/EstablishResponseHeader.cs b/AlipaySDKNet.Standard/Domain/EstablishResponseHeader.cs new file mode 100644 index 000000000..da3245a7b --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/EstablishResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// EstablishResponseHeader Data Structure. + /// + [Serializable] + public class EstablishResponseHeader : AopObject + { + /// + /// 200=成功,400=请求错误,403=bundle查询不到。 Status code used to indicate an error, or "200" for success. + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + + /// + /// Not parsed programmatically. Example "Downstream system offline" + /// + [XmlElement("status_message")] + public string StatusMessage { get; set; } + + /// + /// Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions. + /// + [XmlElement("sub_status_code")] + public string SubStatusCode { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ExtendInfos.cs b/AlipaySDKNet.Standard/Domain/ExtendInfos.cs new file mode 100644 index 000000000..0fde098be --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ExtendInfos.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ExtendInfos Data Structure. + /// + [Serializable] + public class ExtendInfos : AopObject + { + /// + /// isv_pid + /// + [XmlElement("isv_pid")] + public string IsvPid { get; set; } + + /// + /// 场景 + /// + [XmlElement("scene")] + public string Scene { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/FinanceCreditItem.cs b/AlipaySDKNet.Standard/Domain/FinanceCreditItem.cs new file mode 100644 index 000000000..865281b95 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/FinanceCreditItem.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// FinanceCreditItem Data Structure. + /// + [Serializable] + public class FinanceCreditItem : AopObject + { + /// + /// 授信id + /// + [XmlElement("credit_id")] + public string CreditId { get; set; } + + /// + /// 版本,从1开始,0表示最新版本 + /// + [XmlElement("ver")] + public long Ver { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/FinanceReceivableInfo.cs b/AlipaySDKNet.Standard/Domain/FinanceReceivableInfo.cs index 093f40424..61dbf9d23 100644 --- a/AlipaySDKNet.Standard/Domain/FinanceReceivableInfo.cs +++ b/AlipaySDKNet.Standard/Domain/FinanceReceivableInfo.cs @@ -23,12 +23,19 @@ public class FinanceReceivableInfo : AopObject public FinanceMemberInfo CoreBusinessInfo { get; set; } /// - /// 向核心企业授信的配置id + /// 向核心企业授信的配置id(已弃用),请参考credit_idxs /// [XmlArray("credit_ids")] [XmlArrayItem("string")] public List CreditIds { get; set; } + /// + /// 授信列表 + /// + [XmlArray("credit_idxs")] + [XmlArrayItem("finance_credit_item")] + public List CreditIdxs { get; set; } + /// /// 币种 /// diff --git a/AlipaySDKNet.Standard/Domain/FraudData.cs b/AlipaySDKNet.Standard/Domain/FraudData.cs new file mode 100644 index 000000000..38b5e1547 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/FraudData.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// FraudData Data Structure. + /// + [Serializable] + public class FraudData : AopObject + { + /// + /// 设备id + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 用户id + /// + [XmlElement("user_identifier")] + public string UserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/InputScheduleLine.cs b/AlipaySDKNet.Standard/Domain/InputScheduleLine.cs new file mode 100644 index 000000000..61ad4d2bb --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/InputScheduleLine.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// InputScheduleLine Data Structure. + /// + [Serializable] + public class InputScheduleLine : AopObject + { + /// + /// 方向,参考方向枚举 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 聚合时间粒度,单位:分钟 + /// + [XmlElement("time_span")] + public long TimeSpan { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/InputScheduleTime.cs b/AlipaySDKNet.Standard/Domain/InputScheduleTime.cs new file mode 100644 index 000000000..a38e247e1 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/InputScheduleTime.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// InputScheduleTime Data Structure. + /// + [Serializable] + public class InputScheduleTime : AopObject + { + /// + /// 车容量 + /// + [XmlElement("capacity")] + public long Capacity { get; set; } + + /// + /// 方向,参考方向枚举 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 预设车次数 + /// + [XmlElement("exp_trip_cnt")] + public long ExpTripCnt { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/InstAccountInfo.cs b/AlipaySDKNet.Standard/Domain/InstAccountInfo.cs new file mode 100644 index 000000000..f46e0556e --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/InstAccountInfo.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// InstAccountInfo Data Structure. + /// + [Serializable] + public class InstAccountInfo : AopObject + { + /// + /// 机构二类户账户号 + /// + [XmlElement("account_no")] + public string AccountNo { get; set; } + + /// + /// 工单ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 账户工单状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/InvoicePDFSynModel.cs b/AlipaySDKNet.Standard/Domain/InvoicePDFSynModel.cs index c4b9099e5..1036238b6 100644 --- a/AlipaySDKNet.Standard/Domain/InvoicePDFSynModel.cs +++ b/AlipaySDKNet.Standard/Domain/InvoicePDFSynModel.cs @@ -15,6 +15,12 @@ public class InvoicePDFSynModel : AopObject [XmlElement("extend_fields")] public string ExtendFields { get; set; } + /// + /// base64化的字符串 + /// + [XmlElement("file_base")] + public string FileBase { get; set; } + /// /// PDF类型文件填写PDF, JPG类型文件填写JPG(JPG文件请先询问对接人当前是否支持) /// @@ -38,5 +44,11 @@ public class InvoicePDFSynModel : AopObject /// [XmlElement("user_id")] public string UserId { get; set; } + + /// + /// 压缩方式 + /// + [XmlElement("zip")] + public string Zip { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/KoubeiShopWxloginQueryModel.cs b/AlipaySDKNet.Standard/Domain/KoubeiShopWxloginQueryModel.cs new file mode 100644 index 000000000..8526ae463 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/KoubeiShopWxloginQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// KoubeiShopWxloginQueryModel Data Structure. + /// + [Serializable] + public class KoubeiShopWxloginQueryModel : AopObject + { + /// + /// 业务类型,轻店业务传MERCHANT_APP + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 授权,固定值,传authorization_code + /// + [XmlElement("grant_type")] + public string GrantType { get; set; } + + /// + /// 前端页面获取的js_code + /// + [XmlElement("js_code")] + public string JsCode { get; set; } + + /// + /// 微信的app_id + /// + [XmlElement("wx_app_id")] + public string WxAppId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MiniAppServiceInfo.cs b/AlipaySDKNet.Standard/Domain/MiniAppServiceInfo.cs index b824797c9..75544b9cf 100644 --- a/AlipaySDKNet.Standard/Domain/MiniAppServiceInfo.cs +++ b/AlipaySDKNet.Standard/Domain/MiniAppServiceInfo.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Domain [Serializable] public class MiniAppServiceInfo : AopObject { + /// + /// 是否是内部标,true/false + /// + [XmlElement("is_inner")] + public bool IsInner { get; set; } + /// /// 是否订购,true/false /// diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayAmountQueryModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayAmountQueryModel.cs new file mode 100644 index 000000000..3888a53ef --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayAmountQueryModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayAmountQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayAmountQueryModel : AopObject + { + /// + /// 买方信息,这里是ISV的信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBillQueryModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBillQueryModel.cs new file mode 100644 index 000000000..e94d64c71 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBillQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBillQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBillQueryModel : AopObject + { + /// + /// 网商账单号 + /// + [XmlElement("bill_no")] + public string BillNo { get; set; } + + /// + /// ISV买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyersignCreateModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyersignCreateModel.cs new file mode 100644 index 000000000..405827207 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyersignCreateModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBuyersignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBuyersignCreateModel : AopObject + { + /// + /// 买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求幂等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyerunsignCreateModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyerunsignCreateModel.cs new file mode 100644 index 000000000..e811fa410 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyerunsignCreateModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBuyerunsignCreateModel : AopObject + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel.cs new file mode 100644 index 000000000..3c5844bb4 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel : AopObject + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellersignCreateModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellersignCreateModel.cs new file mode 100644 index 000000000..ccd9ecd9c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellersignCreateModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellersignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellersignCreateModel : AopObject + { + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 店铺名称:在需要传店铺名称时 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellersignadmitQueryModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellersignadmitQueryModel.cs new file mode 100644 index 000000000..5e2624d97 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellersignadmitQueryModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellersignadmitQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellersignadmitQueryModel : AopObject + { + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688店铺ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 店铺名称,在需要传店铺名称时 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellerunsignCreateModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellerunsignCreateModel.cs new file mode 100644 index 000000000..742928a0a --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellerunsignCreateModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellerunsignCreateModel : AopObject + { + /// + /// 合同编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 店铺名称,在需要填写店铺名称时 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellerunsignQueryModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellerunsignQueryModel.cs new file mode 100644 index 000000000..45d7f292d --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpaySellerunsignQueryModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellerunsignQueryModel : AopObject + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 渠道类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求幂等号 + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家场景ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 日志id + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayTradeQueryModel.cs b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayTradeQueryModel.cs new file mode 100644 index 000000000..768854c06 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/MybankCreditSupplychainCreditpayTradeQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayTradeQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayTradeQueryModel : AopObject + { + /// + /// 买方信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 网商交易号 + /// + [XmlElement("trade_no")] + public string TradeNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OfflinepayBaseRPCResponseInfo.cs b/AlipaySDKNet.Standard/Domain/OfflinepayBaseRPCResponseInfo.cs new file mode 100644 index 000000000..31625fd39 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OfflinepayBaseRPCResponseInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OfflinepayBaseRPCResponseInfo Data Structure. + /// + [Serializable] + public class OfflinepayBaseRPCResponseInfo : AopObject + { + /// + /// 错误指示器 + /// + [XmlElement("error_indicator")] + public OfflinepayErrorIndicator ErrorIndicator { get; set; } + + /// + /// 应答扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 是否调用成功 + /// + [XmlElement("success")] + public string Success { get; set; } + + /// + /// 服务端时间 + /// + [XmlElement("time")] + public long Time { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OfflinepayErrorIndicator.cs b/AlipaySDKNet.Standard/Domain/OfflinepayErrorIndicator.cs new file mode 100644 index 000000000..404c62363 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OfflinepayErrorIndicator.cs @@ -0,0 +1,72 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OfflinepayErrorIndicator Data Structure. + /// + [Serializable] + public class OfflinepayErrorIndicator : AopObject + { + /// + /// 右动作按钮 + /// + [XmlElement("action_button")] + public string ActionButton { get; set; } + + /// + /// 右动作按钮跳转地址 + /// + [XmlElement("action_url")] + public string ActionUrl { get; set; } + + /// + /// 针对alipayinside的定制化提示文案 + /// + [XmlElement("alipay_inside_tips")] + public string AlipayInsideTips { get; set; } + + /// + /// 是否清楚卡片本地缓存 + /// + [XmlElement("clean_card")] + public bool CleanCard { get; set; } + + /// + /// 左动作按钮 + /// + [XmlElement("default_button")] + public string DefaultButton { get; set; } + + /// + /// 默认跳转地址 + /// + [XmlElement("default_url")] + public string DefaultUrl { get; set; } + + /// + /// 错误描述 + /// + [XmlElement("desc")] + public string Desc { get; set; } + + /// + /// 错误码值 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误提示文案 + /// + [XmlElement("tips")] + public string Tips { get; set; } + + /// + /// 客户端提示类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OpenApiProvisioningBundle.cs b/AlipaySDKNet.Standard/Domain/OpenApiProvisioningBundle.cs new file mode 100644 index 000000000..fcc8a4539 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OpenApiProvisioningBundle.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OpenApiProvisioningBundle Data Structure. + /// + [Serializable] + public class OpenApiProvisioningBundle : AopObject + { + /// + /// 加密后的数据 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 一次性公密钥 + /// + [XmlElement("ephemeral_public_key")] + public string EphemeralPublicKey { get; set; } + + /// + /// 公钥hash + /// + [XmlElement("public_key_hash")] + public string PublicKeyHash { get; set; } + + /// + /// EC_v2 + /// + [XmlElement("version")] + public string Version { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OpenApiResponseHeader.cs b/AlipaySDKNet.Standard/Domain/OpenApiResponseHeader.cs new file mode 100644 index 000000000..1bf03943a --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OpenApiResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OpenApiResponseHeader Data Structure. + /// + [Serializable] + public class OpenApiResponseHeader : AopObject + { + /// + /// 自定义状态码 + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + + /// + /// 状态信息 + /// + [XmlElement("status_message")] + public string StatusMessage { get; set; } + + /// + /// 子状态码 + /// + [XmlElement("sub_status_code")] + public string SubStatusCode { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OrderExt.cs b/AlipaySDKNet.Standard/Domain/OrderExt.cs new file mode 100644 index 000000000..2c4f744bc --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OrderExt.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OrderExt Data Structure. + /// + [Serializable] + public class OrderExt : AopObject + { + /// + /// 键值 + /// + [XmlElement("ext_key")] + public string ExtKey { get; set; } + + /// + /// 值 + /// + [XmlElement("ext_value")] + public string ExtValue { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OrderShopInfo.cs b/AlipaySDKNet.Standard/Domain/OrderShopInfo.cs new file mode 100644 index 000000000..5be2aeed2 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OrderShopInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OrderShopInfo Data Structure. + /// + [Serializable] + public class OrderShopInfo : AopObject + { + /// + /// 店铺地址 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 商户门店id 支持英文、数字的组合 + /// + [XmlElement("merchant_shop_id")] + public string MerchantShopId { get; set; } + + /// + /// 店铺名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 联系电话-支持固话或手机号 仅支持数字、+、- + /// + [XmlElement("phone_num")] + public string PhoneNum { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/OrderShopInfoResult.cs b/AlipaySDKNet.Standard/Domain/OrderShopInfoResult.cs new file mode 100644 index 000000000..6f264f698 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/OrderShopInfoResult.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OrderShopInfoResult Data Structure. + /// + [Serializable] + public class OrderShopInfoResult : AopObject + { + /// + /// 店铺地址 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 商户门店id 支持英文、数字的组合 + /// + [XmlElement("merchant_shop_id")] + public string MerchantShopId { get; set; } + + /// + /// 门店名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 联系电话-支持固话或手机号 仅支持数字、+、- + /// + [XmlElement("phone_num")] + public string PhoneNum { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/PayForPrivilegeCardTemplateConfig.cs b/AlipaySDKNet.Standard/Domain/PayForPrivilegeCardTemplateConfig.cs new file mode 100644 index 000000000..9edac81b8 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/PayForPrivilegeCardTemplateConfig.cs @@ -0,0 +1,40 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// PayForPrivilegeCardTemplateConfig Data Structure. + /// + [Serializable] + public class PayForPrivilegeCardTemplateConfig : AopObject + { + /// + /// 卡模板的辅助信息项列表 + /// + [XmlArray("auxiliary_item_list")] + [XmlArrayItem("pay_for_privilege_card_template_auxiliary_item")] + public List AuxiliaryItemList { get; set; } + + /// + /// 卡模板头部设置 + /// + [XmlElement("header")] + public PayForPrivilegeCardTemplateHeaderConfig Header { get; set; } + + /// + /// 卡模板的操作项列表 + /// + [XmlArray("operation_item_list")] + [XmlArrayItem("pay_for_privilege_card_template_operation_item")] + public List OperationItemList { get; set; } + + /// + /// 二级区域列表 + /// + [XmlArray("secondary_item_list")] + [XmlArrayItem("pay_for_privilege_card_template_secondary_item")] + public List SecondaryItemList { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/PayForPrivilegePromotionPlanInfo.cs b/AlipaySDKNet.Standard/Domain/PayForPrivilegePromotionPlanInfo.cs new file mode 100644 index 000000000..09d2991b2 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/PayForPrivilegePromotionPlanInfo.cs @@ -0,0 +1,74 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// PayForPrivilegePromotionPlanInfo Data Structure. + /// + [Serializable] + public class PayForPrivilegePromotionPlanInfo : AopObject + { + /// + /// 充享惠方案权益金部分,最小为0 + /// + [XmlElement("benefit")] + public string Benefit { get; set; } + + /// + /// 创建时间 + /// + [XmlElement("create_time")] + public string CreateTime { get; set; } + + /// + /// 充享惠方案的结束时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 最近修改时间 + /// + [XmlElement("modify_time")] + public string ModifyTime { get; set; } + + /// + /// 商户创建充享惠方案时指定的外部唯一编号,用于幂等控制 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 充享惠方案有偿券部分 + /// + [XmlArray("paid_voucher_list")] + [XmlArrayItem("pay_for_privilege_paid_voucher_config")] + public List PaidVoucherList { get; set; } + + /// + /// 充享惠方案本金部分,单位元,必须大于0 + /// + [XmlElement("principal")] + public string Principal { get; set; } + + /// + /// 充享惠方案ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + + /// + /// 充享惠方案开始时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 充享惠方案的状态,ENABLED(启用), DISABLED(停用) + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/PayForPrivilegeRechargeCardUseLog.cs b/AlipaySDKNet.Standard/Domain/PayForPrivilegeRechargeCardUseLog.cs index 537dcc73d..013f45f37 100644 --- a/AlipaySDKNet.Standard/Domain/PayForPrivilegeRechargeCardUseLog.cs +++ b/AlipaySDKNet.Standard/Domain/PayForPrivilegeRechargeCardUseLog.cs @@ -34,7 +34,7 @@ public class PayForPrivilegeRechargeCardUseLog : AopObject public string BizType { get; set; } /// - /// 订单ID + /// 该字段已废弃,请勿使用 /// [XmlElement("order_id")] public string OrderId { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/PaymentCredential.cs b/AlipaySDKNet.Standard/Domain/PaymentCredential.cs new file mode 100644 index 000000000..35c77e965 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/PaymentCredential.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// PaymentCredential Data Structure. + /// + [Serializable] + public class PaymentCredential : AopObject + { + /// + /// 码过期时间。{UTC timestamp when the payment credential is no longer valid for payment. W3C’s definition of the ISO 8601 date and time format: yyyy-MM-dd'T'HH:mm:ss.SSSZ} + /// + [XmlElement("expiration_timestamp")] + public string ExpirationTimestamp { get; set; } + + /// + /// 码的id。{Identifier for this credential} + /// + [XmlElement("identifier")] + public string Identifier { get; set; } + + /// + /// 码类型。{To enable QR code and barcode functionality} + /// + [XmlElement("payment_credential_type")] + public string PaymentCredentialType { get; set; } + + /// + /// 码值加密结果。{The encrypted credential value} + /// + [XmlElement("value")] + public EncryptedPaymentCredential Value { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/QuestInstanceDO.cs b/AlipaySDKNet.Standard/Domain/QuestInstanceDO.cs new file mode 100644 index 000000000..61b2eba59 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/QuestInstanceDO.cs @@ -0,0 +1,87 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// QuestInstanceDO Data Structure. + /// + [Serializable] + public class QuestInstanceDO : AopObject + { + /// + /// 跳转地址:若用户已添加目标,则返回打卡页,否则返回目标详情页地址 + /// + [XmlElement("action_schema")] + public string ActionSchema { get; set; } + + /// + /// 用户当前获取卡片详情 + /// + [XmlElement("card_instance")] + public CardInstanceDO CardInstance { get; set; } + + /// + /// 卡片绑定的权益信息 + /// + [XmlArray("card_promos")] + [XmlArrayItem("card_promo_d_o")] + public List CardPromos { get; set; } + + /// + /// 用户已打卡天数 + /// + [XmlElement("day_count")] + public long DayCount { get; set; } + + /// + /// 小目标图标icon + /// + [XmlElement("icon")] + public string Icon { get; set; } + + /// + /// 目标实例ID,若用户没有添加目标,则实例为空 + /// + [XmlElement("instance_id")] + public string InstanceId { get; set; } + + /// + /// 当前目标的添加人数 + /// + [XmlElement("join_count")] + public string JoinCount { get; set; } + + /// + /// 当前用户是否添加目标 + /// + [XmlElement("joined")] + public bool Joined { get; set; } + + /// + /// 是否已打卡 + /// + [XmlElement("marked")] + public bool Marked { get; set; } + + /// + /// 目标唯一ID + /// + [XmlElement("quest_id")] + public string QuestId { get; set; } + + /// + /// 用户设定目标的提醒时间 + /// + [XmlArray("remind_times")] + [XmlArrayItem("string")] + public List RemindTimes { get; set; } + + /// + /// 小目标标题 + /// + [XmlElement("title")] + public string Title { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleConfigGetResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleConfigGetResult.cs new file mode 100644 index 000000000..63158b813 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleConfigGetResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleConfigGetResult Data Structure. + /// + [Serializable] + public class ScheduleConfigGetResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlElement("data")] + public ScheduleConfigItem Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleConfigItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleConfigItem.cs new file mode 100644 index 000000000..be7cb9c91 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleConfigItem.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleConfigItem Data Structure. + /// + [Serializable] + public class ScheduleConfigItem : AopObject + { + /// + /// 配制名称 + /// + [XmlElement("config_name")] + public string ConfigName { get; set; } + + /// + /// 日期列表 + /// + [XmlElement("date")] + public string Date { get; set; } + + /// + /// id + /// + [XmlElement("id")] + public string Id { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleConfigResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleConfigResult.cs new file mode 100644 index 000000000..94ccd2308 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleConfigResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleConfigResult Data Structure. + /// + [Serializable] + public class ScheduleConfigResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlElement("data")] + public ScheduleConfigItem Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleListItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleListItem.cs new file mode 100644 index 000000000..2aa37afcd --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleListItem.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleListItem Data Structure. + /// + [Serializable] + public class ScheduleListItem : AopObject + { + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + + /// + /// 任务状态枚举。 0:准备, 1:运行中 2:已完成 3: 失败 + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 任务类型。枚举,参考任务类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleListResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleListResult.cs new file mode 100644 index 000000000..4c60033b0 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleListResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleListResult Data Structure. + /// + [Serializable] + public class ScheduleListResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_list_item")] + public List Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleOdItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleOdItem.cs new file mode 100644 index 000000000..1f2edfd67 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleOdItem.cs @@ -0,0 +1,78 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleOdItem Data Structure. + /// + [Serializable] + public class ScheduleOdItem : AopObject + { + /// + /// 客流聚类结果分段(通常为1~6) + /// + [XmlElement("cluster_class")] + public string ClusterClass { get; set; } + + /// + /// 线路方向枚举 0:上行 1 下行 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 日均下车人数 + /// + [XmlElement("end_load")] + public string EndLoad { get; set; } + + /// + /// 下车人数比例 + /// + [XmlElement("end_load_percent")] + public string EndLoadPercent { get; set; } + + /// + /// 下车站点名称 + /// + [XmlElement("end_name")] + public string EndName { get; set; } + + /// + /// 下车站点序号 + /// + [XmlElement("end_num")] + public long EndNum { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 日均上车人数 + /// + [XmlElement("start_load")] + public string StartLoad { get; set; } + + /// + /// 杭州东 + /// + [XmlElement("start_name")] + public string StartName { get; set; } + + /// + /// 上车站点序号 + /// + [XmlElement("start_num")] + public long StartNum { get; set; } + + /// + /// 发车时段,若time_span为30,则06:00:00表示06:00:00-06:30:00的时段 + /// + [XmlElement("time_period")] + public string TimePeriod { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleOdResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleOdResult.cs new file mode 100644 index 000000000..482d8ecde --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleOdResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleOdResult Data Structure. + /// + [Serializable] + public class ScheduleOdResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果列表 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_od_item")] + public List Data { get; set; } + + /// + /// 返回状态描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleShiftItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleShiftItem.cs new file mode 100644 index 000000000..aff1a386c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleShiftItem.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleShiftItem Data Structure. + /// + [Serializable] + public class ScheduleShiftItem : AopObject + { + /// + /// 班次序号(可关联排班表得到具体工作计划,0表示休息) + /// + [XmlElement("chain_num")] + public long ChainNum { get; set; } + + /// + /// 轮班周期内的第几天 + /// + [XmlElement("day_num")] + public long DayNum { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 虚拟员工编号 + /// + [XmlElement("vir_employ_id")] + public string VirEmployId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleShiftResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleShiftResult.cs new file mode 100644 index 000000000..21e36619f --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleShiftResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleShiftResult Data Structure. + /// + [Serializable] + public class ScheduleShiftResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_shift_item")] + public List Data { get; set; } + + /// + /// 结果描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleTimeItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleTimeItem.cs new file mode 100644 index 000000000..fc34b6cbb --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleTimeItem.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTimeItem Data Structure. + /// + [Serializable] + public class ScheduleTimeItem : AopObject + { + /// + /// 起点站发车时刻列表,如07:00:00,07:30:00,…,21:30:00,22:00:00 + /// + [XmlElement("departure_time_list")] + public string DepartureTimeList { get; set; } + + /// + /// 线路方向,0:上行;1:下行 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 车辆上座率分布(Json格式,包含均值、方差、分位点等信息),如{‘min’:0.13, ‘max’:1.0, ‘mean’:0.35, ‘median’:0.40, ’pert_90’:0.78} + /// + [XmlElement("occu_rate_sts")] + public string OccuRateSts { get; set; } + + /// + /// 车次总数 + /// + [XmlElement("trip_cnt")] + public string TripCnt { get; set; } + + /// + /// 乘客等待车次数分布(日均,Json格式),如{‘1’:9999, ‘2’:10, ‘3’:2} + /// + [XmlElement("wait_bus_sts")] + public string WaitBusSts { get; set; } + + /// + /// 乘客等车时间分布(日均,Json格式,包含均值、方差、分位点等信息),如{‘min’:0, ‘max’:10, ‘mean’:5, ‘median’:5, ’pert_90’:9} + /// + [XmlElement("wait_time_sts")] + public string WaitTimeSts { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleTimeResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleTimeResult.cs new file mode 100644 index 000000000..93e8c28b5 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleTimeResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTimeResult Data Structure. + /// + [Serializable] + public class ScheduleTimeResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_time_item")] + public List Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleTripItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleTripItem.cs new file mode 100644 index 000000000..6cdd09138 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleTripItem.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTripItem Data Structure. + /// + [Serializable] + public class ScheduleTripItem : AopObject + { + /// + /// 方向,参考方向枚举 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 单程行驶时间(单位min) + /// + [XmlElement("run_time")] + public long RunTime { get; set; } + + /// + /// 若time_span为10,则06:00表示06:00-06:10的时段; 若time_span为30,则06:00表示06:00-06:30的时段 + /// + [XmlElement("time_period")] + public string TimePeriod { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleTripResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleTripResult.cs new file mode 100644 index 000000000..a7fa44e72 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleTripResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTripResult Data Structure. + /// + [Serializable] + public class ScheduleTripResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_trip_item")] + public List Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleWorkItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleWorkItem.cs new file mode 100644 index 000000000..516c2a218 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleWorkItem.cs @@ -0,0 +1,108 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkItem Data Structure. + /// + [Serializable] + public class ScheduleWorkItem : AopObject + { + /// + /// 该班次总里程 + /// + [XmlElement("all_miles")] + public long AllMiles { get; set; } + + /// + /// 该班次总车次数 + /// + [XmlElement("all_trip_cnt")] + public long AllTripCnt { get; set; } + + /// + /// 班次序号 + /// + [XmlElement("chain_num")] + public long ChainNum { get; set; } + + /// + /// 该班次非营运里程 + /// + [XmlElement("invalid_miles")] + public long InvalidMiles { get; set; } + + /// + /// 该班次非营运车次数 + /// + [XmlElement("invalid_trip_cnt")] + public long InvalidTripCnt { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 优化目标,0:班次最少;1:工作时长最短;2:等待时间最少;3:工作时长最均匀 + /// + [XmlElement("opt_type")] + public long OptType { get; set; } + + /// + /// 班制编号(0:通班;1:双班,2:三班) + /// + [XmlElement("shift_id")] + public string ShiftId { get; set; } + + /// + /// 车次链信息(json格式) + /// + [XmlElement("trip_chain")] + public string TripChain { get; set; } + + /// + /// 该班次营运里程 + /// + [XmlElement("valid_miles")] + public long ValidMiles { get; set; } + + /// + /// 该班次营运车次数 + /// + [XmlElement("valid_trip_cnt")] + public long ValidTripCnt { get; set; } + + /// + /// 等待时长 02:10:00 + /// + [XmlElement("wait_time")] + public string WaitTime { get; set; } + + /// + /// 工作结束时间,如20:30:00 + /// + [XmlElement("work_endtime")] + public string WorkEndtime { get; set; } + + /// + /// 班型编号(0:全天班;1:上午班,2:下午班,3:夜班) + /// + [XmlElement("work_id")] + public string WorkId { get; set; } + + /// + /// 工作开始时间,如10:00:00 + /// + [XmlElement("work_starttime")] + public string WorkStarttime { get; set; } + + /// + /// 工作时长,如15:10:00 + /// + [XmlElement("work_time")] + public string WorkTime { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleWorkItems.cs b/AlipaySDKNet.Standard/Domain/ScheduleWorkItems.cs new file mode 100644 index 000000000..8a94450a2 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleWorkItems.cs @@ -0,0 +1,27 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkItems Data Structure. + /// + [Serializable] + public class ScheduleWorkItems : AopObject + { + /// + /// 统计 + /// + [XmlArray("stats")] + [XmlArrayItem("schedule_work_stat_item")] + public List Stats { get; set; } + + /// + /// 结果 + /// + [XmlArray("work")] + [XmlArrayItem("schedule_work_item")] + public List Work { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleWorkResult.cs b/AlipaySDKNet.Standard/Domain/ScheduleWorkResult.cs new file mode 100644 index 000000000..192f57a6e --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleWorkResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkResult Data Structure. + /// + [Serializable] + public class ScheduleWorkResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlElement("data")] + public ScheduleWorkItems Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ScheduleWorkStatItem.cs b/AlipaySDKNet.Standard/Domain/ScheduleWorkStatItem.cs new file mode 100644 index 000000000..97b2fee42 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ScheduleWorkStatItem.cs @@ -0,0 +1,84 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkStatItem Data Structure. + /// + [Serializable] + public class ScheduleWorkStatItem : AopObject + { + /// + /// 总里程统计指标 {sum:2500,mean:130,max:180,min:60,std:40.2} + /// + [XmlElement("all_miles_sts")] + public string AllMilesSts { get; set; } + + /// + /// 总车次数统计指标 {sum:250,mean:13,max:18,min:6,std:4.02} + /// + [XmlElement("all_trip_sts")] + public string AllTripSts { get; set; } + + /// + /// 下行总班次数 + /// + [XmlElement("down_chain_cnt")] + public long DownChainCnt { get; set; } + + /// + /// 非营运里程统计指标 {“1”:220,“2”:50,“3”:120,“4”:50,”5”:0} Key为排班计划中的发车类型 + /// + [XmlElement("invalid_miles_sts")] + public string InvalidMilesSts { get; set; } + + /// + /// 非营运车次数统计指标 {“1”:22,“2”:5,“3”:12,“4”:5,”5”:0} Key为排班计划中的发车类型 + /// + [XmlElement("invalid_trip_sts")] + public string InvalidTripSts { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 优化目标,0:班次最少;1:工作时长最短;2:等待时间最少;3:工作时长最均匀 + /// + [XmlElement("opt_type")] + public long OptType { get; set; } + + /// + /// 上行总班次数 + /// + [XmlElement("up_chain_cnt")] + public long UpChainCnt { get; set; } + + /// + /// 营运里程统计指标 {sum:2300,mean:110,max:150,min:40,std:30.2} + /// + [XmlElement("valid_miles_sts")] + public string ValidMilesSts { get; set; } + + /// + /// 营运车次数统计指标 {sum:230,mean:11,max:15,min:4,std:3.02} + /// + [XmlElement("valid_trip_sts")] + public string ValidTripSts { get; set; } + + /// + /// 等待时长统计指标(Json) {sum:55:10:00,mean:02:10:00,max:06:10:00,min:00:50:00,std:01:01:00}' + /// + [XmlElement("wait_time_sts")] + public string WaitTimeSts { get; set; } + + /// + /// 工作时长统计指标(Json) {sum:246:03:00,mean:10:10:00,max:17:10:00,min:06:50:00,std:02:01:00} + /// + [XmlElement("work_time_sts")] + public string WorkTimeSts { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ServiceTimeInfo.cs b/AlipaySDKNet.Standard/Domain/ServiceTimeInfo.cs new file mode 100644 index 000000000..c28fbc5e6 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ServiceTimeInfo.cs @@ -0,0 +1,26 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ServiceTimeInfo Data Structure. + /// + [Serializable] + public class ServiceTimeInfo : AopObject + { + /// + /// 提前预约时间,单位分钟,大于0 + /// + [XmlElement("advance_time")] + public long AdvanceTime { get; set; } + + /// + /// 时间节点,精确到分,“-” 分隔符 + /// + [XmlArray("time_nodes")] + [XmlArrayItem("string")] + public List TimeNodes { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ShopServiceItem.cs b/AlipaySDKNet.Standard/Domain/ShopServiceItem.cs new file mode 100644 index 000000000..a4b84a7d4 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ShopServiceItem.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ShopServiceItem Data Structure. + /// + [Serializable] + public class ShopServiceItem : AopObject + { + /// + /// 对服务的项目的详细描述 + /// + [XmlElement("description")] + public string Description { get; set; } + + /// + /// 服务项目名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 服务项目需要图片素材 + /// + [XmlArray("pictures")] + [XmlArrayItem("string")] + public List Pictures { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ShopStaffInfo.cs b/AlipaySDKNet.Standard/Domain/ShopStaffInfo.cs new file mode 100644 index 000000000..cad82ff17 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ShopStaffInfo.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ShopStaffInfo Data Structure. + /// + [Serializable] + public class ShopStaffInfo : AopObject + { + /// + /// 服务人员描述 + /// + [XmlElement("desc")] + public string Desc { get; set; } + + /// + /// 工作人员名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 服务人员照片 + /// + [XmlElement("picture")] + public string Picture { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/SimpleShopInfo.cs b/AlipaySDKNet.Standard/Domain/SimpleShopInfo.cs new file mode 100644 index 000000000..9ef72a68e --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/SimpleShopInfo.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// SimpleShopInfo Data Structure. + /// + [Serializable] + public class SimpleShopInfo : AopObject + { + /// + /// 地址信息 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 线下店名称 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/StoreOrderDTO.cs b/AlipaySDKNet.Standard/Domain/StoreOrderDTO.cs new file mode 100644 index 000000000..a9fadef20 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/StoreOrderDTO.cs @@ -0,0 +1,69 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// StoreOrderDTO Data Structure. + /// + [Serializable] + public class StoreOrderDTO : AopObject + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 联系电话 + /// + [XmlElement("contact_phone")] + public string ContactPhone { get; set; } + + /// + /// 业务场景对应的扩展字段 + /// + [XmlArray("ext")] + [XmlArrayItem("order_ext")] + public List Ext { get; set; } + + /// + /// 订单相关的商品信息 + /// + [XmlArray("goods_info_list")] + [XmlArrayItem("store_order_good")] + public List GoodsInfoList { get; set; } + + /// + /// 订单的描述 + /// + [XmlElement("memo")] + public string Memo { get; set; } + + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 卖家id + /// + [XmlElement("seller_id")] + public string SellerId { get; set; } + + /// + /// 姓名 + /// + [XmlElement("user_name")] + public string UserName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/StoreOrderGood.cs b/AlipaySDKNet.Standard/Domain/StoreOrderGood.cs new file mode 100644 index 000000000..1adc52e15 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/StoreOrderGood.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// StoreOrderGood Data Structure. + /// + [Serializable] + public class StoreOrderGood : AopObject + { + /// + /// 商品的ID + /// + [XmlElement("item_id")] + public string ItemId { get; set; } + + /// + /// 商品数量 + /// + [XmlElement("quantity")] + public long Quantity { get; set; } + + /// + /// 规格的ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/SubPackage.cs b/AlipaySDKNet.Standard/Domain/SubPackage.cs new file mode 100644 index 000000000..17c372251 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/SubPackage.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// SubPackage Data Structure. + /// + [Serializable] + public class SubPackage : AopObject + { + /// + /// 构建结果地址 + /// + [XmlElement("build_package_url")] + public string BuildPackageUrl { get; set; } + + /// + /// 分包路径 + /// + [XmlElement("path")] + public string Path { get; set; } + + /// + /// 源码地址 + /// + [XmlElement("source_url")] + public string SourceUrl { get; set; } + + /// + /// 分包的类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/TicketInfo.cs b/AlipaySDKNet.Standard/Domain/TicketInfo.cs new file mode 100644 index 000000000..298aa0919 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/TicketInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TicketInfo Data Structure. + /// + [Serializable] + public class TicketInfo : AopObject + { + /// + /// 地址 不同类型下的地址含义不同。若type为MEAL_NUM,address则代表取餐地点;若type为PICKUP_CODE,address则代表取件地点。其他类型查看小程序订单产品文档 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 单据号 不同类型下单据号含义不同。若类型为MEAL_NUM,则ticket_no表示取餐号;若类型为PICKUP_CODE,则ticket_no表示取件码;其他类型查看小程序订单产品文档 + /// + [XmlElement("ticket_no")] + public string TicketNo { get; set; } + + /// + /// 时间 不同类型下的地址含义不同。若type为MEAL_NUM,time则代表取餐时间;若type为PICKUP_CODE,address则代表取件时间。其他类型查看小程序订单产品文档 + /// + [XmlElement("time")] + public string Time { get; set; } + + /// + /// 凭证类型 MEAL_NUM:取餐号 PICKUP_CODE:取件号 具体类型查看产品文档 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/TicketInfoResult.cs b/AlipaySDKNet.Standard/Domain/TicketInfoResult.cs new file mode 100644 index 000000000..a5dc04dd1 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/TicketInfoResult.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TicketInfoResult Data Structure. + /// + [Serializable] + public class TicketInfoResult : AopObject + { + /// + /// 地址 不同类型下的地址含义不同。若type为MEAL_NUM,address则代表取餐地点;若type为PICKUP_CODE,address则代表取件地点。其他类型查看小程序订单产品文档 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 单据号 不同类型下单据号含义不同。若类型为MEAL_NUM,则ticket_no表示取餐号;若类型为PICKUP_CODE,则ticket_no表示取件码;其他类型查看小程序订单产品文档 + /// + [XmlElement("ticket_no")] + public string TicketNo { get; set; } + + /// + /// 时间 不同类型下的地址含义不同。若type为MEAL_NUM,time则代表取餐时间;若type为PICKUP_CODE,address则代表取件时间。其他类型查看小程序订单产品文档 + /// + [XmlElement("time")] + public string Time { get; set; } + + /// + /// 凭证类型 MEAL_NUM:取餐号 PICKUP_CODE:取件号 具体类型查看产品文档 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/YcsPri.cs b/AlipaySDKNet.Standard/Domain/YcsPri.cs deleted file mode 100644 index 44414847c..000000000 --- a/AlipaySDKNet.Standard/Domain/YcsPri.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// YcsPri Data Structure. - /// - [Serializable] - public class YcsPri : AopObject - { - /// - /// aaa - /// - [XmlElement("a")] - public string A { get; set; } - - /// - /// 支持输入标准html超链接:Link text例如:蚂蚁开放平台 - /// - [XmlElement("b")] - public string B { get; set; } - } -} diff --git a/AlipaySDKNet.Standard/Domain/ZhimaDataStateDataSyncModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaDataStateDataSyncModel.cs index f13b4705c..b67c1a870 100644 --- a/AlipaySDKNet.Standard/Domain/ZhimaDataStateDataSyncModel.cs +++ b/AlipaySDKNet.Standard/Domain/ZhimaDataStateDataSyncModel.cs @@ -22,7 +22,7 @@ public class ZhimaDataStateDataSyncModel : AopObject public string BizStateCode { get; set; } /// - /// 此类目为分配给商户在一个信用服务下的不同类目分类,(如约定产品下的电影类目) + /// 此类目为分配给商户在内容下的不同分类,(如电影,直播) /// [XmlElement("category_code")] public string CategoryCode { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractCommonConfirmModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractCommonConfirmModel.cs new file mode 100644 index 000000000..3f782882e --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractCommonConfirmModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractCommonConfirmModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractCommonConfirmModel : AopObject + { + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 应约者id(淘宝id/支付宝user_id) + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractCommonQueryModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractCommonQueryModel.cs new file mode 100644 index 000000000..2124c3ad5 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractCommonQueryModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractCommonQueryModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractCommonQueryModel : AopObject + { + /// + /// 合约单号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 应约者id(淘宝id/支付宝user_id) + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOfferModifyModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOfferModifyModel.cs new file mode 100644 index 000000000..2e4a44083 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOfferModifyModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractOfferModifyModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractOfferModifyModel : AopObject + { + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 发约单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 信用服务id,需要与芝麻技术确定此值 + /// + [XmlElement("service_id")] + public string ServiceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOfferQueryModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOfferQueryModel.cs new file mode 100644 index 000000000..47d663fc8 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOfferQueryModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractOfferQueryModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractOfferQueryModel : AopObject + { + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOnofferQueryModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOnofferQueryModel.cs new file mode 100644 index 000000000..7e8a8ffb3 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractOnofferQueryModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractOnofferQueryModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractOnofferQueryModel : AopObject + { + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 应约者id(淘宝id/支付宝user_id) + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractQuickCreateModel.cs b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractQuickCreateModel.cs new file mode 100644 index 000000000..62ce265df --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZhimaMerchantContractQuickCreateModel.cs @@ -0,0 +1,126 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractQuickCreateModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractQuickCreateModel : AopObject + { + /// + /// 此类目为分配给商户在内容下的不同类目分类,(如直播/电影类目) + /// + [XmlElement("category_code")] + public string CategoryCode { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 是否提供优惠券标识true/false + /// + [XmlElement("coupon_flag")] + public string CouponFlag { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容名称 + /// + [XmlElement("out_content_name")] + public string OutContentName { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 信用服务id,需要与芝麻技术确定此值 + /// + [XmlElement("service_id")] + public string ServiceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZmContractDetail.cs b/AlipaySDKNet.Standard/Domain/ZmContractDetail.cs new file mode 100644 index 000000000..f2bbeaaeb --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/ZmContractDetail.cs @@ -0,0 +1,207 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ZmContractDetail Data Structure. + /// + [Serializable] + public class ZmContractDetail : AopObject + { + /// + /// 取消的操作主体 用于区分是系统取消还是用户主动取消 + /// + [XmlElement("cancel_operator")] + public string CancelOperator { get; set; } + + /// + /// 是否支持取消 + /// + [XmlElement("cancel_supported")] + public bool CancelSupported { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 合约状态 INIT:初始化,待应约状态 EFFECT:生效 COMPLETE:完结 CLOSE:关闭 INVALID:失效 + /// + [XmlElement("contract_status")] + public string ContractStatus { get; set; } + + /// + /// 事件详情,事件可以为打卡事件等所有履约推进事件 + /// + [XmlArray("event_detail")] + [XmlArrayItem("bcc_event_detail")] + public List EventDetail { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 应约时间 + /// + [XmlElement("gmt_accept")] + public string GmtAccept { get; set; } + + /// + /// 合约取消时间 + /// + [XmlElement("gmt_cancel")] + public string GmtCancel { get; set; } + + /// + /// 逾期时间 + /// + [XmlElement("gmt_due")] + public string GmtDue { get; set; } + + /// + /// 合约完结时间 + /// + [XmlElement("gmt_end")] + public string GmtEnd { get; set; } + + /// + /// 合约生效时间 + /// + [XmlElement("gmt_valid")] + public string GmtValid { get; set; } + + /// + /// 事项结束时间 + /// + [XmlElement("item_end_time")] + public string ItemEndTime { get; set; } + + /// + /// 事项号 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 事项开始时间 + /// + [XmlElement("item_start_time")] + public string ItemStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 发约单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + + /// + /// 事项下标的信息 + /// + [XmlArray("subjects")] + [XmlArrayItem("bcc_subject_detail")] + public List Subjects { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs b/AlipaySDKNet.Standard/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs index ee687d886..597313cf6 100644 --- a/AlipaySDKNet.Standard/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs +++ b/AlipaySDKNet.Standard/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs @@ -9,6 +9,18 @@ namespace Aop.Api.Domain [Serializable] public class ZolozAuthenticationCustomerSmilepayInitializeModel : AopObject { + /// + /// 刷脸服务Id + /// + [XmlElement("service_id")] + public string ServiceId { get; set; } + + /// + /// 商户可传入刷脸服务所需的扩展参数,json格式 + /// + [XmlElement("service_params")] + public string ServiceParams { get; set; } + /// /// { "apdidToken": "设备指纹", "appName": "应用名称", "appVersion": "应用版本", "bioMetaInfo": "生物信息如2.3.0:3,-4" } /// diff --git a/AlipaySDKNet/Request/AlipayZdataserviceUnidataQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayCommerceAirCallcenterTradeApplyRequest.cs similarity index 76% rename from AlipaySDKNet/Request/AlipayZdataserviceUnidataQueryRequest.cs rename to AlipaySDKNet.Standard/Request/AlipayCommerceAirCallcenterTradeApplyRequest.cs index 6c135bf7d..d8495f7a7 100644 --- a/AlipaySDKNet/Request/AlipayZdataserviceUnidataQueryRequest.cs +++ b/AlipaySDKNet.Standard/Request/AlipayCommerceAirCallcenterTradeApplyRequest.cs @@ -1,23 +1,19 @@ using System; +using Aop.Api.Domain; using System.Collections.Generic; using Aop.Api.Response; namespace Aop.Api.Request { /// - /// AOP API: alipay.zdataservice.unidata.query + /// AOP API: alipay.commerce.air.callcenter.trade.apply /// - public class AlipayZdataserviceUnidataQueryRequest : IAopRequest + public class AlipayCommerceAirCallcenterTradeApplyRequest : IAopRequest { /// - /// 通用的查询入参 + /// 航司电话订票待申请接口 /// - public string QueryCondition { get; set; } - - /// - /// 返回数据的类型,内部业务系统分配 - /// - public string UniqKey { get; set; } + public string BizContent { get; set; } #region IAopRequest Members private bool needEncrypt=false; @@ -80,7 +76,7 @@ public class AlipayZdataserviceUnidataQueryRequest : IAopRequest GetParameters() { AopDictionary parameters = new AopDictionary(); - parameters.Add("query_condition", this.QueryCondition); - parameters.Add("uniq_key", this.UniqKey); + parameters.Add("biz_content", this.BizContent); return parameters; } diff --git a/AlipaySDKNet.Standard/Request/AlipayZdataserviceUnidataQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayCommerceTransportTaxiDriverSendRequest.cs similarity index 76% rename from AlipaySDKNet.Standard/Request/AlipayZdataserviceUnidataQueryRequest.cs rename to AlipaySDKNet.Standard/Request/AlipayCommerceTransportTaxiDriverSendRequest.cs index 6c135bf7d..7ed7d21fa 100644 --- a/AlipaySDKNet.Standard/Request/AlipayZdataserviceUnidataQueryRequest.cs +++ b/AlipaySDKNet.Standard/Request/AlipayCommerceTransportTaxiDriverSendRequest.cs @@ -1,23 +1,19 @@ using System; +using Aop.Api.Domain; using System.Collections.Generic; using Aop.Api.Response; namespace Aop.Api.Request { /// - /// AOP API: alipay.zdataservice.unidata.query + /// AOP API: alipay.commerce.transport.taxi.driver.send /// - public class AlipayZdataserviceUnidataQueryRequest : IAopRequest + public class AlipayCommerceTransportTaxiDriverSendRequest : IAopRequest { /// - /// 通用的查询入参 + /// 机构向支付宝发送出租车司机信息 /// - public string QueryCondition { get; set; } - - /// - /// 返回数据的类型,内部业务系统分配 - /// - public string UniqKey { get; set; } + public string BizContent { get; set; } #region IAopRequest Members private bool needEncrypt=false; @@ -80,7 +76,7 @@ public class AlipayZdataserviceUnidataQueryRequest : IAopRequest GetParameters() { AopDictionary parameters = new AopDictionary(); - parameters.Add("query_condition", this.QueryCondition); - parameters.Add("uniq_key", this.UniqKey); + parameters.Add("biz_content", this.BizContent); return parameters; } diff --git a/AlipaySDKNet.Standard/Request/AlipayCommerceTransportVehicleownerTransdataSyncRequest.cs b/AlipaySDKNet.Standard/Request/AlipayCommerceTransportVehicleownerTransdataSyncRequest.cs new file mode 100644 index 000000000..fb928f638 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayCommerceTransportVehicleownerTransdataSyncRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.commerce.transport.vehicleowner.transdata.sync + /// + public class AlipayCommerceTransportVehicleownerTransdataSyncRequest : IAopRequest + { + /// + /// 车服数据迁移 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.commerce.transport.vehicleowner.transdata.sync"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualconfigGetRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualconfigGetRequest.cs new file mode 100644 index 000000000..8ae3599a0 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualconfigGetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualconfig.get + /// + public class AlipayDataAiserviceCloudbusSchedualconfigGetRequest : IAopRequest + { + /// + /// 排班调度配制获取 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualconfig.get"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualconfigSetRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualconfigSetRequest.cs new file mode 100644 index 000000000..3123a8977 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualconfigSetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualconfig.set + /// + public class AlipayDataAiserviceCloudbusSchedualconfigSetRequest : IAopRequest + { + /// + /// 排班调度配制接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualconfig.set"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtaskAddRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtaskAddRequest.cs new file mode 100644 index 000000000..da48ea87a --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtaskAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtask.add + /// + public class AlipayDataAiserviceCloudbusSchedualtaskAddRequest : IAopRequest + { + /// + /// 排班调度任务提交 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtask.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtaskQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtaskQueryRequest.cs new file mode 100644 index 000000000..68522ee2c --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtaskQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtask.query + /// + public class AlipayDataAiserviceCloudbusSchedualtaskQueryRequest : IAopRequest + { + /// + /// 排班调度排班任务查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtask.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest.cs new file mode 100644 index 000000000..c8a451b6f --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtasktime.add + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest : IAopRequest + { + /// + /// 时刻表排班任务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtasktime.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest.cs new file mode 100644 index 000000000..8d0d7f535 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtasktime.query + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest : IAopRequest + { + /// + /// 排班调度时刻表任务查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtasktime.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletasklistQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletasklistQueryRequest.cs new file mode 100644 index 000000000..582ae8541 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletasklistQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletasklist.query + /// + public class AlipayDataAiserviceCloudbusScheduletasklistQueryRequest : IAopRequest + { + /// + /// 排班调度任务列表查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletasklist.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskodAddRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskodAddRequest.cs new file mode 100644 index 000000000..18f92b3c8 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskodAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskod.add + /// + public class AlipayDataAiserviceCloudbusScheduletaskodAddRequest : IAopRequest + { + /// + /// 排班调度客流任务提交 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskod.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskodQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskodQueryRequest.cs new file mode 100644 index 000000000..ddc98b790 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskodQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskod.query + /// + public class AlipayDataAiserviceCloudbusScheduletaskodQueryRequest : IAopRequest + { + /// + /// 排班调度客流任务查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskod.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest.cs new file mode 100644 index 000000000..64eacd9bb --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskshift.add + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest : IAopRequest + { + /// + /// 排班调度---轮班任务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskshift.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest.cs new file mode 100644 index 000000000..cbdba26e8 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskshift.query + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest : IAopRequest + { + /// + /// 排班调度--轮班任务查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskshift.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletriptimeGetRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletriptimeGetRequest.cs new file mode 100644 index 000000000..9e5f5ee67 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusScheduletriptimeGetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletriptime.get + /// + public class AlipayDataAiserviceCloudbusScheduletriptimeGetRequest : IAopRequest + { + /// + /// 排班调度-单程时间获取接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletriptime.get"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataDataserviceAdDataQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataDataserviceAdDataQueryRequest.cs new file mode 100644 index 000000000..5af9e6e42 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataDataserviceAdDataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.dataservice.ad.data.query + /// + public class AlipayDataDataserviceAdDataQueryRequest : IAopRequest + { + /// + /// 广告投放数据查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.dataservice.ad.data.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayEbppInspectNotifyRequest.cs b/AlipaySDKNet.Standard/Request/AlipayEbppInspectNotifyRequest.cs new file mode 100644 index 000000000..4a4c8e298 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayEbppInspectNotifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.ebpp.inspect.notify + /// + public class AlipayEbppInspectNotifyRequest : IAopRequest + { + /// + /// 引擎检测结果同步 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.ebpp.inspect.notify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayInsSceneDxDataQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayInsSceneDxDataQueryRequest.cs new file mode 100644 index 000000000..337ce8eb6 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayInsSceneDxDataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.ins.scene.dx.data.query + /// + public class AlipayInsSceneDxDataQueryRequest : IAopRequest + { + /// + /// dx数据服务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.ins.scene.dx.data.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayInsSceneSellerDataQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayInsSceneSellerDataQueryRequest.cs new file mode 100644 index 000000000..6e60ec730 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayInsSceneSellerDataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.ins.scene.seller.data.query + /// + public class AlipayInsSceneSellerDataQueryRequest : IAopRequest + { + /// + /// 商家保障中心数据服务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.ins.scene.seller.data.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMarketingCampaignCommoneventApplyRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMarketingCampaignCommoneventApplyRequest.cs new file mode 100644 index 000000000..01020546d --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMarketingCampaignCommoneventApplyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.marketing.campaign.commonevent.apply + /// + public class AlipayMarketingCampaignCommoneventApplyRequest : IAopRequest + { + /// + /// 灯火ADX通用事件接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.marketing.campaign.commonevent.apply"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeMemberremainingQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeMemberremainingQueryRequest.cs new file mode 100644 index 000000000..b561f94bb --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeMemberremainingQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.memberremaining.query + /// + public class AlipayMerchantPayforprivilegeMemberremainingQueryRequest : IAopRequest + { + /// + /// 会员充值余额查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.memberremaining.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeMerchantremainingQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeMerchantremainingQueryRequest.cs new file mode 100644 index 000000000..72230346f --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeMerchantremainingQueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.merchantremaining.query + /// + public class AlipayMerchantPayforprivilegeMerchantremainingQueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.merchantremaining.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePayCreateRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePayCreateRequest.cs new file mode 100644 index 000000000..88768b3b2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePayCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.pay.create + /// + public class AlipayMerchantPayforprivilegePayCreateRequest : IAopRequest + { + /// + /// 创建充值卡支付单 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.pay.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeProfileQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeProfileQueryRequest.cs new file mode 100644 index 000000000..ad01408c4 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeProfileQueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.profile.query + /// + public class AlipayMerchantPayforprivilegeProfileQueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.profile.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeProfileSetRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeProfileSetRequest.cs new file mode 100644 index 000000000..2b920eab7 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeProfileSetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.profile.set + /// + public class AlipayMerchantPayforprivilegeProfileSetRequest : IAopRequest + { + /// + /// 充享惠业务配置设置 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.profile.set"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanCreateRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanCreateRequest.cs new file mode 100644 index 000000000..9b8c099b2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.promotionplan.create + /// + public class AlipayMerchantPayforprivilegePromotionplanCreateRequest : IAopRequest + { + /// + /// 创建充值方案 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.promotionplan.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanModifyRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanModifyRequest.cs new file mode 100644 index 000000000..85fd7b9f4 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.promotionplan.modify + /// + public class AlipayMerchantPayforprivilegePromotionplanModifyRequest : IAopRequest + { + /// + /// 修改储值方案 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.promotionplan.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanQueryRequest.cs new file mode 100644 index 000000000..9f95cc693 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegePromotionplanQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.promotionplan.query + /// + public class AlipayMerchantPayforprivilegePromotionplanQueryRequest : IAopRequest + { + /// + /// 查询储值方案 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.promotionplan.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUselogBatchqueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUselogBatchqueryRequest.cs new file mode 100644 index 000000000..c6ccf42ec --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUselogBatchqueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.uselog.batchquery + /// + public class AlipayMerchantPayforprivilegeUselogBatchqueryRequest : IAopRequest + { + /// + /// 分页查询充值的消费记录 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.uselog.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUserrelationCreateRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUserrelationCreateRequest.cs new file mode 100644 index 000000000..e6aee981d --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUserrelationCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.userrelation.create + /// + public class AlipayMerchantPayforprivilegeUserrelationCreateRequest : IAopRequest + { + /// + /// 建立会员关系 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.userrelation.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUserrelationQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUserrelationQueryRequest.cs new file mode 100644 index 000000000..5313a62e5 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayMerchantPayforprivilegeUserrelationQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.userrelation.query + /// + public class AlipayMerchantPayforprivilegeUserrelationQueryRequest : IAopRequest + { + /// + /// 查询会员关系 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.userrelation.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayOpenAgentFacetofaceSignRequest.cs b/AlipaySDKNet.Standard/Request/AlipayOpenAgentFacetofaceSignRequest.cs index 096b13ddf..d766c77d8 100644 --- a/AlipaySDKNet.Standard/Request/AlipayOpenAgentFacetofaceSignRequest.cs +++ b/AlipaySDKNet.Standard/Request/AlipayOpenAgentFacetofaceSignRequest.cs @@ -46,7 +46,7 @@ public class AlipayOpenAgentFacetofaceSignRequest : IAopUploadRequest - /// 服务费率(%),0.38~3之间,精确到0.01。 当签约且授权sign_and_auth=true时,必填。 + /// 服务费率(%),0.38~3之间, 特殊行业除外。当签约且授权标识sign_and_auth=true时,该费率信息必填。 /// public string Rate { get; set; } @@ -61,7 +61,7 @@ public class AlipayOpenAgentFacetofaceSignRequest : IAopUploadRequest - /// 签约且授权标识,默认为false + /// 签约且授权标识,默认为false,只进行签约操作; 如果设置为true,则表示签约成功后,会自动进行应用授权操作。 /// public Nullable SignAndAuth { get; set; } diff --git a/AlipaySDKNet.Standard/Request/AlipayOpenDafBatchqueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayOpenDafBatchqueryRequest.cs new file mode 100644 index 000000000..f44e55a92 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayOpenDafBatchqueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.open.daf.batchquery + /// + public class AlipayOpenDafBatchqueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.open.daf.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayOpenMiniVersionAuditApplyRequest.cs b/AlipaySDKNet.Standard/Request/AlipayOpenMiniVersionAuditApplyRequest.cs index b402a30d6..f49490969 100644 --- a/AlipaySDKNet.Standard/Request/AlipayOpenMiniVersionAuditApplyRequest.cs +++ b/AlipaySDKNet.Standard/Request/AlipayOpenMiniVersionAuditApplyRequest.cs @@ -12,7 +12,7 @@ namespace Aop.Api.Request public class AlipayOpenMiniVersionAuditApplyRequest : IAopUploadRequest { /// - /// 小程序类目,格式为 第一个一级类目_第一个二级类目;第二个一级类目_第二个二级类目,详细类目可以参考https://docs.alipay.com/isv/10325,如果不填默认采用当前小程序应用类目。使用默认应用类目后不需要再次上传营业执照号、营业执照名、营业执照截图、营业执照有效期。 + /// 小程序类目,格式为 第一个一级类目_第一个二级类目;第二个一级类目_第二个二级类目,详细类目可以通过 https://docs.open.alipay.com/api_49/alipay.open.mini.category.query接口查询,如果不填默认采用当前小程序应用类目。使用默认应用类目后不需要再次上传营业执照号、营业执照名、营业执照截图、营业执照有效期。 /// public string AppCategoryIds { get; set; } diff --git a/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayCredentialsGetRequest.cs b/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayCredentialsGetRequest.cs new file mode 100644 index 000000000..537d98bf8 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayCredentialsGetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.pay.codec.applepay.credentials.get + /// + public class AlipayPayCodecApplepayCredentialsGetRequest : IAopRequest + { + /// + /// applepay付款码获取 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.pay.codec.applepay.credentials.get"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayEstablishSetRequest.cs b/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayEstablishSetRequest.cs new file mode 100644 index 000000000..1b52933d0 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayEstablishSetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.pay.codec.applepay.establish.set + /// + public class AlipayPayCodecApplepayEstablishSetRequest : IAopRequest + { + /// + /// wagu付款码证书加载 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.pay.codec.applepay.establish.set"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipaySocialAntforestTreeSyncRequest.cs b/AlipaySDKNet.Standard/Request/AlipaySocialAntforestTreeSyncRequest.cs new file mode 100644 index 000000000..ef7b86ee6 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipaySocialAntforestTreeSyncRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.antforest.tree.sync + /// + public class AlipaySocialAntforestTreeSyncRequest : IAopRequest + { + /// + /// 同步外部证书到蚂蚁森林 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.antforest.tree.sync"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipaySocialAntiepSceneSendRequest.cs b/AlipaySDKNet.Standard/Request/AlipaySocialAntiepSceneSendRequest.cs new file mode 100644 index 000000000..ee02a8358 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipaySocialAntiepSceneSendRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.antiep.scene.send + /// + public class AlipaySocialAntiepSceneSendRequest : IAopRequest + { + /// + /// 社区互娱平台场景上报行为 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.antiep.scene.send"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceAddRequest.cs b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceAddRequest.cs new file mode 100644 index 000000000..212642ed5 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.add + /// + public class AlipaySocialBaseQuestInstanceAddRequest : IAopRequest + { + /// + /// 用户添加小目标 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceModifyRequest.cs b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceModifyRequest.cs new file mode 100644 index 000000000..43de226b5 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.modify + /// + public class AlipaySocialBaseQuestInstanceModifyRequest : IAopRequest + { + /// + /// 小目标实例配置接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceQueryRequest.cs new file mode 100644 index 000000000..79fea32bd --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.query + /// + public class AlipaySocialBaseQuestInstanceQueryRequest : IAopRequest + { + /// + /// 查询用户小目标目标实例接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceSubmitRequest.cs b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceSubmitRequest.cs new file mode 100644 index 000000000..221b8f3f2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipaySocialBaseQuestInstanceSubmitRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.submit + /// + public class AlipaySocialBaseQuestInstanceSubmitRequest : IAopRequest + { + /// + /// 小目标打卡接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.submit"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleCreateRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleCreateRequest.cs new file mode 100644 index 000000000..649cda56f --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.applepay.provisioningbundle.create + /// + public class AlipayUserApplepayProvisioningbundleCreateRequest : IAopRequest + { + /// + /// ApplePay开卡接口(用于压测) + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.applepay.provisioningbundle.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleEffectRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleEffectRequest.cs new file mode 100644 index 000000000..44a0c790c --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleEffectRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.applepay.provisioningbundle.effect + /// + public class AlipayUserApplepayProvisioningbundleEffectRequest : IAopRequest + { + /// + /// wagu激活卡片接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.applepay.provisioningbundle.effect"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleQueryRequest.cs new file mode 100644 index 000000000..c28b2794c --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserApplepayProvisioningbundleQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.applepay.provisioningbundle.query + /// + public class AlipayUserApplepayProvisioningbundleQueryRequest : IAopRequest + { + /// + /// wagu获取卡片信息接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.applepay.provisioningbundle.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserMpointAuthbasePayRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserMpointAuthbasePayRequest.cs new file mode 100644 index 000000000..0dda79ac6 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserMpointAuthbasePayRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.authbase.pay + /// + public class AlipayUserMpointAuthbasePayRequest : IAopRequest + { + /// + /// 支付宝会员积分扣减接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.authbase.pay"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserMpointAuthbaseQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserMpointAuthbaseQueryRequest.cs new file mode 100644 index 000000000..42a195f47 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserMpointAuthbaseQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.authbase.query + /// + public class AlipayUserMpointAuthbaseQueryRequest : IAopRequest + { + /// + /// 用户等级和积分查询接口(不需要授权) + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.authbase.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserMpointPayRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserMpointPayRequest.cs new file mode 100644 index 000000000..0eac3c39c --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserMpointPayRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.pay + /// + public class AlipayUserMpointPayRequest : IAopRequest + { + /// + /// 蚂蚁会员积分支付接口(需要用户授权) + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.pay"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserMpointQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserMpointQueryRequest.cs new file mode 100644 index 000000000..474f22a19 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserMpointQueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.query + /// + public class AlipayUserMpointQueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayUserMpointRefundRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserMpointRefundRequest.cs new file mode 100644 index 000000000..e8fe257ae --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserMpointRefundRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.refund + /// + public class AlipayUserMpointRefundRequest : IAopRequest + { + /// + /// 支付宝会员积分退还接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.refund"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantExpandShopBatchqueryRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantExpandShopBatchqueryRequest.cs new file mode 100644 index 000000000..a2ea4f731 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantExpandShopBatchqueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.shop.batchquery + /// + public class AntMerchantExpandShopBatchqueryRequest : IAopRequest + { + /// + /// 分页查询线下门店 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.shop.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceCreateRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceCreateRequest.cs new file mode 100644 index 000000000..4bd15186d --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.store.shopservice.create + /// + public class AntMerchantExpandStoreShopserviceCreateRequest : IAopRequest + { + /// + /// 场景服务创建 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.store.shopservice.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceDeleteRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceDeleteRequest.cs new file mode 100644 index 000000000..e06dc83e6 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceDeleteRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.store.shopservice.delete + /// + public class AntMerchantExpandStoreShopserviceDeleteRequest : IAopRequest + { + /// + /// 场景服务删除 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.store.shopservice.delete"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceModifyRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceModifyRequest.cs new file mode 100644 index 000000000..26ffa7372 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantExpandStoreShopserviceModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.store.shopservice.modify + /// + public class AntMerchantExpandStoreShopserviceModifyRequest : IAopRequest + { + /// + /// 场景服务修改 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.store.shopservice.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreBatchqueryRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreBatchqueryRequest.cs new file mode 100644 index 000000000..034f8e2f5 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreBatchqueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.batchquery + /// + public class AntMerchantOrderStoreBatchqueryRequest : IAopRequest + { + /// + /// 商家端订单批量查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreCreateRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreCreateRequest.cs new file mode 100644 index 000000000..6cc2e9264 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.create + /// + public class AntMerchantOrderStoreCreateRequest : IAopRequest + { + /// + /// 门店插件服务订单业务能力 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreQueryRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreQueryRequest.cs new file mode 100644 index 000000000..7caf5e228 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.query + /// + public class AntMerchantOrderStoreQueryRequest : IAopRequest + { + /// + /// 门店插件服务订单查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreSyncRequest.cs b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreSyncRequest.cs new file mode 100644 index 000000000..525b3813b --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntMerchantOrderStoreSyncRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.sync + /// + public class AntMerchantOrderStoreSyncRequest : IAopRequest + { + /// + /// 门店插件服务订单状态同步 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.sync"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AntfortuneQuotationResearchdataQueryRequest.cs b/AlipaySDKNet.Standard/Request/AntfortuneQuotationResearchdataQueryRequest.cs new file mode 100644 index 000000000..c74ab629b --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AntfortuneQuotationResearchdataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: antfortune.quotation.researchdata.query + /// + public class AntfortuneQuotationResearchdataQueryRequest : IAopRequest + { + /// + /// 金融信息平台研究数据查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "antfortune.quotation.researchdata.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AnttechAiCvOcrBusinesslicenseIdentifyRequest.cs b/AlipaySDKNet.Standard/Request/AnttechAiCvOcrBusinesslicenseIdentifyRequest.cs new file mode 100644 index 000000000..73cf15d4c --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AnttechAiCvOcrBusinesslicenseIdentifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: anttech.ai.cv.ocr.businesslicense.identify + /// + public class AnttechAiCvOcrBusinesslicenseIdentifyRequest : IAopRequest + { + /// + /// AI认知服务营业执照ocr服务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "anttech.ai.cv.ocr.businesslicense.identify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AnttechAiCvOcrVatinvoiceIdentifyRequest.cs b/AlipaySDKNet.Standard/Request/AnttechAiCvOcrVatinvoiceIdentifyRequest.cs new file mode 100644 index 000000000..5cd014cdd --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AnttechAiCvOcrVatinvoiceIdentifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: anttech.ai.cv.ocr.vatinvoice.identify + /// + public class AnttechAiCvOcrVatinvoiceIdentifyRequest : IAopRequest + { + /// + /// AI认知服务增值税发票ocr识别 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "anttech.ai.cv.ocr.vatinvoice.identify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest.cs b/AlipaySDKNet.Standard/Request/AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest.cs new file mode 100644 index 000000000..59f353a87 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: anttech.blockchain.finance.mylogisticfinsys.message.publish + /// + public class AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest : IAopRequest + { + /// + /// 物流金融统一route接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "anttech.blockchain.finance.mylogisticfinsys.message.publish"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/KoubeiShopWxloginQueryRequest.cs b/AlipaySDKNet.Standard/Request/KoubeiShopWxloginQueryRequest.cs new file mode 100644 index 000000000..6646e90ca --- /dev/null +++ b/AlipaySDKNet.Standard/Request/KoubeiShopWxloginQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: koubei.shop.wxlogin.query + /// + public class KoubeiShopWxloginQueryRequest : IAopRequest + { + /// + /// 查询口碑轻店微信登录信息 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "koubei.shop.wxlogin.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayAmountQueryRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayAmountQueryRequest.cs new file mode 100644 index 000000000..a5394ab08 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayAmountQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.amount.query + /// + public class MybankCreditSupplychainCreditpayAmountQueryRequest : IAopRequest + { + /// + /// 供应商-1688和赊呗融合-额度查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.amount.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBillQueryRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBillQueryRequest.cs new file mode 100644 index 000000000..354c5adde --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBillQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.bill.query + /// + public class MybankCreditSupplychainCreditpayBillQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-账单查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.bill.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyersignCreateRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyersignCreateRequest.cs new file mode 100644 index 000000000..f514d70c2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyersignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.buyersign.create + /// + public class MybankCreditSupplychainCreditpayBuyersignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-买家签约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.buyersign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyerunsignCreateRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyerunsignCreateRequest.cs new file mode 100644 index 000000000..7616ab799 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyerunsignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.buyerunsign.create + /// + public class MybankCreditSupplychainCreditpayBuyerunsignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-买家解约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.buyerunsign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest.cs new file mode 100644 index 000000000..de9b22309 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.buyerunsignadmit.query + /// + public class MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-买家解约准入查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.buyerunsignadmit.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellersignCreateRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellersignCreateRequest.cs new file mode 100644 index 000000000..f110bf90a --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellersignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellersign.create + /// + public class MybankCreditSupplychainCreditpaySellersignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家签约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellersign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellersignadmitQueryRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellersignadmitQueryRequest.cs new file mode 100644 index 000000000..7992b405e --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellersignadmitQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellersignadmit.query + /// + public class MybankCreditSupplychainCreditpaySellersignadmitQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家签约准入咨询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellersignadmit.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellerunsignCreateRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellerunsignCreateRequest.cs new file mode 100644 index 000000000..6c8fdf8d2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellerunsignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellerunsign.create + /// + public class MybankCreditSupplychainCreditpaySellerunsignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家解约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellerunsign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellerunsignQueryRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellerunsignQueryRequest.cs new file mode 100644 index 000000000..26d04fc5f --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpaySellerunsignQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellerunsign.query + /// + public class MybankCreditSupplychainCreditpaySellerunsignQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家解约咨询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellerunsign.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayTradeQueryRequest.cs b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayTradeQueryRequest.cs new file mode 100644 index 000000000..ea7b5e2ae --- /dev/null +++ b/AlipaySDKNet.Standard/Request/MybankCreditSupplychainCreditpayTradeQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.trade.query + /// + public class MybankCreditSupplychainCreditpayTradeQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-交易查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.trade.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/ZhimaMerchantContractCommonConfirmRequest.cs b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractCommonConfirmRequest.cs new file mode 100644 index 000000000..f2715baa4 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractCommonConfirmRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.common.confirm + /// + public class ZhimaMerchantContractCommonConfirmRequest : IAopRequest + { + /// + /// 芝麻约定应约接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.common.confirm"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/ZhimaMerchantContractCommonQueryRequest.cs b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractCommonQueryRequest.cs new file mode 100644 index 000000000..d1f17ac6a --- /dev/null +++ b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractCommonQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.common.query + /// + public class ZhimaMerchantContractCommonQueryRequest : IAopRequest + { + /// + /// 芝麻约定合约查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.common.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOfferModifyRequest.cs b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOfferModifyRequest.cs new file mode 100644 index 000000000..14873f4c8 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOfferModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.offer.modify + /// + public class ZhimaMerchantContractOfferModifyRequest : IAopRequest + { + /// + /// 芝麻约定发约单修改接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.offer.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOfferQueryRequest.cs b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOfferQueryRequest.cs new file mode 100644 index 000000000..4e3cc12c6 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOfferQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.offer.query + /// + public class ZhimaMerchantContractOfferQueryRequest : IAopRequest + { + /// + /// 芝麻约定查询发约单详情接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.offer.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOnofferQueryRequest.cs b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOnofferQueryRequest.cs new file mode 100644 index 000000000..15c17e9df --- /dev/null +++ b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractOnofferQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.onoffer.query + /// + public class ZhimaMerchantContractOnofferQueryRequest : IAopRequest + { + /// + /// 芝麻约定按发约单号查询合约接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.onoffer.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Request/ZhimaMerchantContractQuickCreateRequest.cs b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractQuickCreateRequest.cs new file mode 100644 index 000000000..f1f6d8e14 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/ZhimaMerchantContractQuickCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.quick.create + /// + public class ZhimaMerchantContractQuickCreateRequest : IAopRequest + { + /// + /// 芝麻约定快速发约接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.quick.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayCommerceAirCallcenterTradeApplyResponse.cs b/AlipaySDKNet.Standard/Response/AlipayCommerceAirCallcenterTradeApplyResponse.cs new file mode 100644 index 000000000..f8445f019 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayCommerceAirCallcenterTradeApplyResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayCommerceAirCallcenterTradeApplyResponse. + /// + public class AlipayCommerceAirCallcenterTradeApplyResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayCommerceMedicalCardQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayCommerceMedicalCardQueryResponse.cs index 623a81348..6b2942598 100644 --- a/AlipaySDKNet.Standard/Response/AlipayCommerceMedicalCardQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayCommerceMedicalCardQueryResponse.cs @@ -16,6 +16,12 @@ public class AlipayCommerceMedicalCardQueryResponse : AopResponse [XmlElement("agreement_no")] public string AgreementNo { get; set; } + /// + /// 当前绑卡状态: BINDED(已绑定) NOT_BIND(未绑定) OTHER_BIND(不同账号绑卡) + /// + [XmlElement("bind_status")] + public string BindStatus { get; set; } + /// /// 买家支付宝账号,将用*号屏蔽部分内容 /// @@ -47,7 +53,7 @@ public class AlipayCommerceMedicalCardQueryResponse : AopResponse public string City { get; set; } /// - /// 一个支付宝账号绑定了多张医保卡,除本人意外的卡信息 + /// 一个支付宝账号绑定了多张医保卡,除本人以外的卡信息 /// [XmlArray("extend_cards")] [XmlArrayItem("extend_medical_card")] @@ -83,6 +89,18 @@ public class AlipayCommerceMedicalCardQueryResponse : AopResponse [XmlElement("medical_card_type")] public string MedicalCardType { get; set; } + /// + /// bind_satus= OTHER_BIND情况下输出,买家支付宝账号,将用*号屏蔽部分内容 + /// + [XmlElement("other_user_logon_id")] + public string OtherUserLogonId { get; set; } + + /// + /// bind_satus= OTHER_BIND情况下输出, "off"代表其他账户已注销 "on"代表其他账户未注销 + /// + [XmlElement("other_user_status")] + public string OtherUserStatus { get; set; } + /// /// 医保卡持卡人证件号码(脱敏) /// diff --git a/AlipaySDKNet.Standard/Response/AlipayCommerceTransportTaxiDriverSendResponse.cs b/AlipaySDKNet.Standard/Response/AlipayCommerceTransportTaxiDriverSendResponse.cs new file mode 100644 index 000000000..b29b20985 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayCommerceTransportTaxiDriverSendResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayCommerceTransportTaxiDriverSendResponse. + /// + public class AlipayCommerceTransportTaxiDriverSendResponse : AopResponse + { + /// + /// 司机身份证号 + /// + [XmlElement("driver_cert_no")] + public string DriverCertNo { get; set; } + + /// + /// 错误码 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误消息 + /// + [XmlElement("error_message")] + public string ErrorMessage { get; set; } + + /// + /// 扩展信息 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayCommerceTransportVehicleownerTransdataSyncResponse.cs b/AlipaySDKNet.Standard/Response/AlipayCommerceTransportVehicleownerTransdataSyncResponse.cs new file mode 100644 index 000000000..c132b7282 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayCommerceTransportVehicleownerTransdataSyncResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayCommerceTransportVehicleownerTransdataSyncResponse. + /// + public class AlipayCommerceTransportVehicleownerTransdataSyncResponse : AopResponse + { + /// + /// 数据执行行数 + /// + [XmlElement("excute_lines")] + public string ExcuteLines { get; set; } + + /// + /// 执行结果 + /// + [XmlElement("result")] + public string Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualconfigGetResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualconfigGetResponse.cs new file mode 100644 index 000000000..0b4702557 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualconfigGetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigGetResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualconfigGetResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleConfigGetResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualconfigSetResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualconfigSetResponse.cs new file mode 100644 index 000000000..4981f3434 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualconfigSetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigSetResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualconfigSetResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleConfigResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtaskAddResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtaskAddResponse.cs new file mode 100644 index 000000000..f77fc8722 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtaskAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskAddResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtaskAddResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtaskQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtaskQueryResponse.cs new file mode 100644 index 000000000..f5aef1a92 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtaskQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskQueryResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtaskQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleWorkResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse.cs new file mode 100644 index 000000000..e1e7501de --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse.cs new file mode 100644 index 000000000..54d0047a6 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleTimeResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletasklistQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletasklistQueryResponse.cs new file mode 100644 index 000000000..547bc687e --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletasklistQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletasklistQueryResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletasklistQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleListResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskodAddResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskodAddResponse.cs new file mode 100644 index 000000000..f88ccd40e --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskodAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodAddResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskodAddResponse : AopResponse + { + /// + /// 任务结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskodQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskodQueryResponse.cs new file mode 100644 index 000000000..5239a5381 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskodQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodQueryResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskodQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleOdResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse.cs new file mode 100644 index 000000000..ec7e93c36 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse.cs new file mode 100644 index 000000000..cba64cf54 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleShiftResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletriptimeGetResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletriptimeGetResponse.cs new file mode 100644 index 000000000..bd577b8d5 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusScheduletriptimeGetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletriptimeGetResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletriptimeGetResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleTripResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataDataserviceAdDataQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataDataserviceAdDataQueryResponse.cs new file mode 100644 index 000000000..bb51c338a --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataDataserviceAdDataQueryResponse.cs @@ -0,0 +1,20 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataDataserviceAdDataQueryResponse. + /// + public class AlipayDataDataserviceAdDataQueryResponse : AopResponse + { + /// + /// 汇总结果数据列表 + /// + [XmlArray("data_list")] + [XmlArrayItem("data_detail")] + public List DataList { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayEbppDetectReportQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayEbppDetectReportQueryResponse.cs index b6b9d155e..ee1e3fcf2 100644 --- a/AlipaySDKNet.Standard/Response/AlipayEbppDetectReportQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayEbppDetectReportQueryResponse.cs @@ -9,27 +9,51 @@ namespace Aop.Api.Response public class AlipayEbppDetectReportQueryResponse : AopResponse { /// - /// 检测是否完成。true-是,false-否 + /// 注意:该字段废弃。 /// [XmlElement("audit_done")] public bool AuditDone { get; set; } /// - /// 检测是否通过。true-通过,false-不通过 + /// 注意:该字段废弃。 /// [XmlElement("audit_pass")] public bool AuditPass { get; set; } /// - /// 当audit_pass=false时,表示错误细节 + /// 检测结果详情。JSON数组字符串。列出每个检测项的检测详情。 + /// + [XmlElement("detect_detail")] + public string DetectDetail { get; set; } + + /// + /// 检测状态. * 0-未查到报告(检测未开始或检测异常) * 1-检测中 * 2-检测结束并生成检测报告 + /// + [XmlElement("detect_status")] + public long DetectStatus { get; set; } + + /// + /// 注意:该字段废弃 /// [XmlElement("err_msg")] public string ErrMsg { get; set; } /// - /// 外部业务标识。和入参一致。 + /// 注意:该字段废弃。 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } + + /// + /// 整体检测是否通过. 只有当detectStatus=2时才会有值. * true-检测通过 * false-检测不通过 + /// + [XmlElement("pass")] + public bool Pass { get; set; } + + /// + /// 检测结果一句话描述 + /// + [XmlElement("summary")] + public string Summary { get; set; } } } diff --git a/AlipaySDKNet.Standard/Response/AlipayEbppInspectNotifyResponse.cs b/AlipaySDKNet.Standard/Response/AlipayEbppInspectNotifyResponse.cs new file mode 100644 index 000000000..d46799bb0 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayEbppInspectNotifyResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayEbppInspectNotifyResponse. + /// + public class AlipayEbppInspectNotifyResponse : AopResponse + { + /// + /// 结果同步状态 + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayInsSceneDxDataQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayInsSceneDxDataQueryResponse.cs new file mode 100644 index 000000000..5a78460bd --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayInsSceneDxDataQueryResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayInsSceneDxDataQueryResponse. + /// + public class AlipayInsSceneDxDataQueryResponse : AopResponse + { + /// + /// 返回dx数据 + /// + [XmlElement("data")] + public string Data { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayInsSceneSellerDataQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayInsSceneSellerDataQueryResponse.cs new file mode 100644 index 000000000..14587f864 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayInsSceneSellerDataQueryResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayInsSceneSellerDataQueryResponse. + /// + public class AlipayInsSceneSellerDataQueryResponse : AopResponse + { + /// + /// 返回数据结果 + /// + [XmlElement("data")] + public string Data { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMarketingCampaignCommoneventApplyResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMarketingCampaignCommoneventApplyResponse.cs new file mode 100644 index 000000000..e6a14628e --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMarketingCampaignCommoneventApplyResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMarketingCampaignCommoneventApplyResponse. + /// + public class AlipayMarketingCampaignCommoneventApplyResponse : AopResponse + { + /// + /// 与event关联的返回结果 + /// + [XmlElement("data")] + public string Data { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeMemberremainingQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeMemberremainingQueryResponse.cs new file mode 100644 index 000000000..071b48f09 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeMemberremainingQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeMemberremainingQueryResponse. + /// + public class AlipayMerchantPayforprivilegeMemberremainingQueryResponse : AopResponse + { + /// + /// 余额中未使用的权益金部分 + /// + [XmlElement("unused_benefit")] + public string UnusedBenefit { get; set; } + + /// + /// 余额中未使用的本金部分 + /// + [XmlElement("unused_principal")] + public string UnusedPrincipal { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeMerchantremainingQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeMerchantremainingQueryResponse.cs new file mode 100644 index 000000000..822491009 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeMerchantremainingQueryResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeMerchantremainingQueryResponse. + /// + public class AlipayMerchantPayforprivilegeMerchantremainingQueryResponse : AopResponse + { + /// + /// 消费者未使用的权益金部分 + /// + [XmlElement("unused_benefit")] + public string UnusedBenefit { get; set; } + + /// + /// 消费者尚未使用的本金部分 + /// + [XmlElement("unused_principal")] + public string UnusedPrincipal { get; set; } + + /// + /// 消费者已使用的权益金部分 + /// + [XmlElement("used_benefit")] + public string UsedBenefit { get; set; } + + /// + /// 消费者已使用的本金部分 + /// + [XmlElement("used_principal")] + public string UsedPrincipal { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePayCreateResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePayCreateResponse.cs new file mode 100644 index 000000000..cbf0696a2 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePayCreateResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePayCreateResponse. + /// + public class AlipayMerchantPayforprivilegePayCreateResponse : AopResponse + { + /// + /// 用于唤起资金授权支付的orderStr参数 + /// + [XmlElement("order_str")] + public string OrderStr { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeProfileQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeProfileQueryResponse.cs new file mode 100644 index 000000000..0bb9109a1 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeProfileQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeProfileQueryResponse. + /// + public class AlipayMerchantPayforprivilegeProfileQueryResponse : AopResponse + { + /// + /// 充享惠卡模板设置 + /// + [XmlElement("card_template_config")] + public PayForPrivilegeCardTemplateConfig CardTemplateConfig { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeProfileSetResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeProfileSetResponse.cs new file mode 100644 index 000000000..c0230b1a0 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeProfileSetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeProfileSetResponse. + /// + public class AlipayMerchantPayforprivilegeProfileSetResponse : AopResponse + { + /// + /// 充享惠卡模板设置 + /// + [XmlElement("card_template_config")] + public PayForPrivilegeCardTemplateConfig CardTemplateConfig { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanCreateResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanCreateResponse.cs new file mode 100644 index 000000000..297b08767 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanCreateResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanCreateResponse. + /// + public class AlipayMerchantPayforprivilegePromotionplanCreateResponse : AopResponse + { + /// + /// 充享惠方案,当前接口创建的充享惠方案 + /// + [XmlElement("promotion_plan")] + public PayForPrivilegePromotionPlanInfo PromotionPlan { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanModifyResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanModifyResponse.cs new file mode 100644 index 000000000..e39fe0d58 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanModifyResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanModifyResponse. + /// + public class AlipayMerchantPayforprivilegePromotionplanModifyResponse : AopResponse + { + /// + /// 充值方案信息,返回修改后的充值方案信息 + /// + [XmlElement("promotion_plan")] + public PayForPrivilegePromotionPlanInfo PromotionPlan { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanQueryResponse.cs new file mode 100644 index 000000000..44bbcc854 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegePromotionplanQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanQueryResponse. + /// + public class AlipayMerchantPayforprivilegePromotionplanQueryResponse : AopResponse + { + /// + /// 充享惠方案信息,返回之前创建的充享惠方案信息,方案不存在或者无权限返回空 + /// + [XmlElement("promotion_plan")] + public PayForPrivilegePromotionPlanInfo PromotionPlan { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUselogBatchqueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUselogBatchqueryResponse.cs new file mode 100644 index 000000000..5392b6419 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUselogBatchqueryResponse.cs @@ -0,0 +1,20 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeUselogBatchqueryResponse. + /// + public class AlipayMerchantPayforprivilegeUselogBatchqueryResponse : AopResponse + { + /// + /// 充享惠使用记录 + /// + [XmlArray("use_log_list")] + [XmlArrayItem("pay_for_privilege_recharge_card_use_log")] + public List UseLogList { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUserrelationCreateResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUserrelationCreateResponse.cs new file mode 100644 index 000000000..97dd1b913 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUserrelationCreateResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationCreateResponse. + /// + public class AlipayMerchantPayforprivilegeUserrelationCreateResponse : AopResponse + { + /// + /// 充享惠业务用户与商户关系 + /// + [XmlElement("member_info")] + public PayForPrivilegeUserRelation MemberInfo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUserrelationQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUserrelationQueryResponse.cs new file mode 100644 index 000000000..710b7a53a --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayMerchantPayforprivilegeUserrelationQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationQueryResponse. + /// + public class AlipayMerchantPayforprivilegeUserrelationQueryResponse : AopResponse + { + /// + /// 充享惠业务用户与商户的关系 + /// + [XmlElement("member_info")] + public PayForPrivilegeUserRelation MemberInfo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayOpenDafBatchqueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayOpenDafBatchqueryResponse.cs new file mode 100644 index 000000000..48f0c43ff --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayOpenDafBatchqueryResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOpenDafBatchqueryResponse. + /// + public class AlipayOpenDafBatchqueryResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs index 51afc7bd2..d91a45288 100644 --- a/AlipaySDKNet.Standard/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs @@ -26,12 +26,24 @@ public class AlipayOpenMiniInnerversionUploadstatusQueryResponse : AopResponse [XmlElement("build_status")] public string BuildStatus { get; set; } + /// + /// 构建日志地址 + /// + [XmlElement("log_url")] + public string LogUrl { get; set; } + /// /// 是否需要轮询 /// [XmlElement("need_rotation")] public string NeedRotation { get; set; } + /// + /// 构建的结果地址 + /// + [XmlElement("result_url")] + public string ResultUrl { get; set; } + /// /// 创建版本结果 /// diff --git a/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayCredentialsGetResponse.cs b/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayCredentialsGetResponse.cs new file mode 100644 index 000000000..ea1cea285 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayCredentialsGetResponse.cs @@ -0,0 +1,26 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecApplepayCredentialsGetResponse. + /// + public class AlipayPayCodecApplepayCredentialsGetResponse : AopResponse + { + /// + /// 加密后的码列表。 {List of Credential objects} + /// + [XmlArray("credentials")] + [XmlArrayItem("payment_credential")] + public List Credentials { get; set; } + + /// + /// 结果。 statusCode:Status code used to indicate an error. If omitted, assumed to be 200 (success);subStatusCode:Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions;statusMessage:Not parsed programmatically. Example "Downstream system offline". + /// + [XmlElement("response_header")] + public CredentialsResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayEstablishSetResponse.cs b/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayEstablishSetResponse.cs new file mode 100644 index 000000000..39cd15543 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayEstablishSetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecApplepayEstablishSetResponse. + /// + public class AlipayPayCodecApplepayEstablishSetResponse : AopResponse + { + /// + /// 结果。 statusCode:Status code used to indicate an error. If omitted, assumed to be 200 (success);subStatusCode:Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions;statusMessage:Not parsed programmatically. Example "Downstream system offline". + /// + [XmlElement("response_header")] + public EstablishResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipaySecurityProdTamGetResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySecurityProdTamGetResponse.cs index d72b3d8b1..597548f5a 100644 --- a/AlipaySDKNet.Standard/Response/AlipaySecurityProdTamGetResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipaySecurityProdTamGetResponse.cs @@ -20,6 +20,12 @@ public class AlipaySecurityProdTamGetResponse : AopResponse [XmlElement("encrypted_ta_data")] public string EncryptedTaData { get; set; } + /// + /// ext_info+不唯一+补充说明协议中不明确的信息+无枚举值 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + /// /// return_code(错误码)+不唯一+用于响应OEM厂商服务端的请求+是枚举值,000000含义为成功+生成方式由具体执行情况确定+其它枚举值进一步约定 /// @@ -31,5 +37,17 @@ public class AlipaySecurityProdTamGetResponse : AopResponse /// [XmlElement("return_desc")] public string ReturnDesc { get; set; } + + /// + /// ta_hash+不唯一+ta源文件进行SHA-256哈希计算再进行BASE64编码得到的哈希值字符串信息。 + /// + [XmlElement("ta_hash")] + public string TaHash { get; set; } + + /// + /// ext_info+不唯一+JSON形式的map,包含关于ta摘要算法等信息+枚举值:BASE64_OVER_SHA256;BASE64_OVER_SHA512;BASE64_OVER_SM3+支付宝服务端返回TA哈希时放在入参里+缺省值为BASE64_OVER_SHA256 + /// + [XmlElement("ta_info")] + public string TaInfo { get; set; } } } diff --git a/AlipaySDKNet.Standard/Response/AlipaySocialAntforestTreeSyncResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySocialAntforestTreeSyncResponse.cs new file mode 100644 index 000000000..972792eee --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipaySocialAntforestTreeSyncResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialAntforestTreeSyncResponse. + /// + public class AlipaySocialAntforestTreeSyncResponse : AopResponse + { + /// + /// 同步是否成功 + /// + [XmlElement("synced")] + public bool Synced { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipaySocialAntiepSceneSendResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySocialAntiepSceneSendResponse.cs new file mode 100644 index 000000000..38dae236d --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipaySocialAntiepSceneSendResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialAntiepSceneSendResponse. + /// + public class AlipaySocialAntiepSceneSendResponse : AopResponse + { + /// + /// 上报行为的结果描述 + /// + [XmlElement("biz_desc")] + public string BizDesc { get; set; } + + /// + /// 上报行为的处理结果码 + /// + [XmlElement("biz_result_code")] + public string BizResultCode { get; set; } + + /// + /// 上报行为的结果如果是失败时,是否可重试, 如果biz_success=false,则biz_retriable=true时代表需要重试的异常, 如果biz_retriable=false时,则代表不能重试,含义可分为两种:1、不需要重试的异常,比如重试的请求被幂等了、2、或者是即使重试了也成功不了的异常,比如参数缺失、配置缺失等,这种错误需要在验证期间就避免掉,验证无误了再上线! + /// + [XmlElement("biz_retriable")] + public bool BizRetriable { get; set; } + + /// + /// 上报行为的处理结果是否成功,如果biz_success=true,则代表上报成功,如果biz_success=false,需看biz_retriable的值是true代表可重试,biz_retriable为false时则不可重试 + /// + [XmlElement("biz_success")] + public bool BizSuccess { get; set; } + + /// + /// 行为上报所需处理模块的处理结果。 比如:一次行为上报需要处理:统计、任务1、任务2,三个模块,则key为每个模块的标识,value为每个模块的处理结果,value有: 1、success:模块执行结果是否成功,如果success为false,则代表执行失败,不能立即拿到该模块的执行结果,但无需重试,只要外面的success为true,这里会保证最终一致性, 2、code:结果码 3、desc:结果描述 + /// + [XmlElement("module_result_map")] + public string ModuleResultMap { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceAddResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceAddResponse.cs new file mode 100644 index 000000000..cbfbcf242 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceAddResponse. + /// + public class AlipaySocialBaseQuestInstanceAddResponse : AopResponse + { + /// + /// 小目标实例模型 + /// + [XmlElement("instance")] + public QuestInstanceDO Instance { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceModifyResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceModifyResponse.cs new file mode 100644 index 000000000..7828f74ab --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceModifyResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceModifyResponse. + /// + public class AlipaySocialBaseQuestInstanceModifyResponse : AopResponse + { + /// + /// 返回用户添加小目标实例 + /// + [XmlElement("instance")] + public QuestInstanceDO Instance { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceQueryResponse.cs new file mode 100644 index 000000000..045315f55 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceQueryResponse.cs @@ -0,0 +1,20 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceQueryResponse. + /// + public class AlipaySocialBaseQuestInstanceQueryResponse : AopResponse + { + /// + /// 返回请求小目标实例集合 + /// + [XmlArray("instances")] + [XmlArrayItem("quest_instance_d_o")] + public List Instances { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceSubmitResponse.cs b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceSubmitResponse.cs new file mode 100644 index 000000000..553d68f1b --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipaySocialBaseQuestInstanceSubmitResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceSubmitResponse. + /// + public class AlipaySocialBaseQuestInstanceSubmitResponse : AopResponse + { + /// + /// 今日打卡次数 + /// + [XmlElement("daily_count")] + public long DailyCount { get; set; } + + /// + /// 打卡总天数 + /// + [XmlElement("mark_amount")] + public long MarkAmount { get; set; } + + /// + /// 打卡时间戳 + /// + [XmlElement("mark_time")] + public long MarkTime { get; set; } + + /// + /// 打卡成功文案 + /// + [XmlElement("mark_tip")] + public string MarkTip { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayTradeFastpayRefundQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayTradeFastpayRefundQueryResponse.cs index e7d72306c..ce4469876 100644 --- a/AlipaySDKNet.Standard/Response/AlipayTradeFastpayRefundQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayTradeFastpayRefundQueryResponse.cs @@ -71,7 +71,7 @@ public class AlipayTradeFastpayRefundQueryResponse : AopResponse public string RefundChargeAmount { get; set; } /// - /// 本次退款使用的资金渠道; 默认不返回该信息,需与支付宝约定后配置返回; + /// 本次退款使用的资金渠道; 默认不返回该信息,需与支付宝约定后配置,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("refund_detail_item_list")] [XmlArrayItem("trade_fund_bill")] diff --git a/AlipaySDKNet.Standard/Response/AlipayTradePayResponse.cs b/AlipaySDKNet.Standard/Response/AlipayTradePayResponse.cs index d15cbf560..87d96f081 100644 --- a/AlipaySDKNet.Standard/Response/AlipayTradePayResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayTradePayResponse.cs @@ -89,13 +89,13 @@ public class AlipayTradePayResponse : AopResponse public string DiscountAmount { get; set; } /// - /// 本次交易支付所使用的单品券优惠的商品优惠信息 + /// 本次交易支付所使用的单品券优惠的商品优惠信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlElement("discount_goods_detail")] public string DiscountGoodsDetail { get; set; } /// - /// 交易支付使用的资金渠道 + /// 交易支付使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("fund_bill_list")] [XmlArrayItem("trade_fund_bill")] @@ -210,7 +210,7 @@ public class AlipayTradePayResponse : AopResponse public string TransPayRate { get; set; } /// - /// 本交易支付时使用的所有优惠券信息 + /// 本交易支付时使用的所有优惠券信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlArray("voucher_detail_list")] [XmlArrayItem("voucher_detail")] diff --git a/AlipaySDKNet.Standard/Response/AlipayTradeQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayTradeQueryResponse.cs index bfae0f5dc..7f140f2d2 100644 --- a/AlipaySDKNet.Standard/Response/AlipayTradeQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayTradeQueryResponse.cs @@ -83,7 +83,7 @@ public class AlipayTradeQueryResponse : AopResponse public string DiscountAmount { get; set; } /// - /// 本次交易支付所使用的单品券优惠的商品优惠信息 + /// 本次交易支付所使用的单品券优惠的商品优惠信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlElement("discount_goods_detail")] public string DiscountGoodsDetail { get; set; } @@ -95,7 +95,7 @@ public class AlipayTradeQueryResponse : AopResponse public string ExtInfos { get; set; } /// - /// 交易支付使用的资金渠道 + /// 交易支付使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("fund_bill_list")] [XmlArrayItem("trade_fund_bill")] @@ -222,7 +222,7 @@ public class AlipayTradeQueryResponse : AopResponse public string TradeNo { get; set; } /// - /// 返回的交易结算信息,包含分账、补差等信息 + /// 返回的交易结算信息,包含分账、补差等信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlElement("trade_settle_info")] public TradeSettleInfo TradeSettleInfo { get; set; } @@ -246,7 +246,7 @@ public class AlipayTradeQueryResponse : AopResponse public string TransPayRate { get; set; } /// - /// 本交易支付时使用的所有优惠券信息 + /// 本交易支付时使用的所有优惠券信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlArray("voucher_detail_list")] [XmlArrayItem("voucher_detail")] diff --git a/AlipaySDKNet.Standard/Response/AlipayTradeRefundResponse.cs b/AlipaySDKNet.Standard/Response/AlipayTradeRefundResponse.cs index ace572ea1..683b2f833 100644 --- a/AlipaySDKNet.Standard/Response/AlipayTradeRefundResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayTradeRefundResponse.cs @@ -77,7 +77,7 @@ public class AlipayTradeRefundResponse : AopResponse public string RefundCurrency { get; set; } /// - /// 退款使用的资金渠道 + /// 退款使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("refund_detail_item_list")] [XmlArrayItem("trade_fund_bill")] diff --git a/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleCreateResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleCreateResponse.cs new file mode 100644 index 000000000..ba0bdc2a0 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleCreateResponse.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayProvisioningbundleCreateResponse. + /// + public class AlipayUserApplepayProvisioningbundleCreateResponse : AopResponse + { + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// ApplePay公用响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleEffectResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleEffectResponse.cs new file mode 100644 index 000000000..cf7e31537 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleEffectResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayProvisioningbundleEffectResponse. + /// + public class AlipayUserApplepayProvisioningbundleEffectResponse : AopResponse + { + /// + /// ApplePay公用响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs new file mode 100644 index 000000000..f4c3ced30 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayProvisioningbundleQueryResponse. + /// + public class AlipayUserApplepayProvisioningbundleQueryResponse : AopResponse + { + /// + /// 卡模型 + /// + [XmlElement("provisioning_bundle")] + public OpenApiProvisioningBundle ProvisioningBundle { get; set; } + + /// + /// 响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs index 426d1bf2a..020982ec0 100644 --- a/AlipaySDKNet.Standard/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs @@ -39,6 +39,12 @@ public class AlipayUserCertifyIdentifyInfoQueryResponse : AopResponse [XmlElement("certify_time")] public string CertifyTime { get; set; } + /// + /// havana id + /// + [XmlElement("havana_id")] + public string HavanaId { get; set; } + /// /// T表示认证,F表示未认证 /// diff --git a/AlipaySDKNet.Standard/Response/AlipayUserCertifyOpenQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserCertifyOpenQueryResponse.cs index 4f4ce7324..59dba4db3 100644 --- a/AlipaySDKNet.Standard/Response/AlipayUserCertifyOpenQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayUserCertifyOpenQueryResponse.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Response /// public class AlipayUserCertifyOpenQueryResponse : AopResponse { + /// + /// 认证错误原因,扩展字段,默认不返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + /// /// 认证的主体信息,一般的认证场景返回为空 /// diff --git a/AlipaySDKNet.Standard/Response/AlipayUserMpointAuthbasePayResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserMpointAuthbasePayResponse.cs new file mode 100644 index 000000000..e1c58bcde --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserMpointAuthbasePayResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointAuthbasePayResponse. + /// + public class AlipayUserMpointAuthbasePayResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserMpointAuthbaseQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserMpointAuthbaseQueryResponse.cs new file mode 100644 index 000000000..cf40273ce --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserMpointAuthbaseQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointAuthbaseQueryResponse. + /// + public class AlipayUserMpointAuthbaseQueryResponse : AopResponse + { + /// + /// 支付宝用户的蚂蚁会员积分余额 + /// + [XmlElement("balance")] + public long Balance { get; set; } + + /// + /// 支付宝用户的蚂蚁会员等级 + /// + [XmlElement("grade")] + public string Grade { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserMpointPayResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserMpointPayResponse.cs new file mode 100644 index 000000000..72b9a4ed4 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserMpointPayResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointPayResponse. + /// + public class AlipayUserMpointPayResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserMpointQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserMpointQueryResponse.cs new file mode 100644 index 000000000..80c0b7fc8 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserMpointQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointQueryResponse. + /// + public class AlipayUserMpointQueryResponse : AopResponse + { + /// + /// 支付宝用户的蚂蚁会员积分余额 + /// + [XmlElement("balance")] + public long Balance { get; set; } + + /// + /// 支付宝用户的蚂蚁会员等级 + /// + [XmlElement("grade")] + public string Grade { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserMpointRefundResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserMpointRefundResponse.cs new file mode 100644 index 000000000..724b6fc15 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserMpointRefundResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointRefundResponse. + /// + public class AlipayUserMpointRefundResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayZdataserviceUnidataQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayZdataserviceUnidataQueryResponse.cs deleted file mode 100644 index 5d6357893..000000000 --- a/AlipaySDKNet.Standard/Response/AlipayZdataserviceUnidataQueryResponse.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Response -{ - /// - /// AlipayZdataserviceUnidataQueryResponse. - /// - public class AlipayZdataserviceUnidataQueryResponse : AopResponse - { - /// - /// 查询结果集,统一用string方式返回 - /// - [XmlElement("query_result")] - public string QueryResult { get; set; } - - /// - /// 查询是否成功具体描述 - /// - [XmlElement("result_code")] - public string ResultCode { get; set; } - - /// - /// 查询是否成功 - /// - [XmlElement("success")] - public string Success { get; set; } - } -} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantExpandShopBatchqueryResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantExpandShopBatchqueryResponse.cs new file mode 100644 index 000000000..4eca6f375 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantExpandShopBatchqueryResponse.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandShopBatchqueryResponse. + /// + public class AntMerchantExpandShopBatchqueryResponse : AopResponse + { + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 线下门店的列表;有可能为空 + /// + [XmlArray("shops")] + [XmlArrayItem("simple_shop_info")] + public List Shops { get; set; } + + /// + /// 按照分页数量拆分,分解出来的页数 + /// + [XmlElement("total_page")] + public long TotalPage { get; set; } + + /// + /// 所有线下门店数量 + /// + [XmlElement("total_size")] + public long TotalSize { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceCreateResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceCreateResponse.cs new file mode 100644 index 000000000..92b16e2d8 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceCreateResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandStoreShopserviceCreateResponse. + /// + public class AntMerchantExpandStoreShopserviceCreateResponse : AopResponse + { + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 场景服务ID + /// + [XmlElement("shop_service_id")] + public string ShopServiceId { get; set; } + + /// + /// 规格ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceDeleteResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceDeleteResponse.cs new file mode 100644 index 000000000..21d4cd4ae --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceDeleteResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandStoreShopserviceDeleteResponse. + /// + public class AntMerchantExpandStoreShopserviceDeleteResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceModifyResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceModifyResponse.cs new file mode 100644 index 000000000..b364d6e4b --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantExpandStoreShopserviceModifyResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandStoreShopserviceModifyResponse. + /// + public class AntMerchantExpandStoreShopserviceModifyResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreBatchqueryResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreBatchqueryResponse.cs new file mode 100644 index 000000000..a4eb71a6d --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreBatchqueryResponse.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreBatchqueryResponse. + /// + public class AntMerchantOrderStoreBatchqueryResponse : AopResponse + { + /// + /// 是否有下一页 + /// + [XmlElement("has_more")] + public bool HasMore { get; set; } + + /// + /// 订单列表 + /// + [XmlArray("order_list")] + [XmlArrayItem("store_order_d_t_o")] + public List OrderList { get; set; } + + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public string PageSize { get; set; } + + /// + /// 查询总数量 + /// + [XmlElement("total")] + public long Total { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreCreateResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreCreateResponse.cs new file mode 100644 index 000000000..fce159356 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreCreateResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreCreateResponse. + /// + public class AntMerchantOrderStoreCreateResponse : AopResponse + { + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 订单的状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreQueryResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreQueryResponse.cs new file mode 100644 index 000000000..9be5222ee --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreQueryResponse.cs @@ -0,0 +1,69 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreQueryResponse. + /// + public class AntMerchantOrderStoreQueryResponse : AopResponse + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 联系电话 + /// + [XmlElement("contact_phone")] + public string ContactPhone { get; set; } + + /// + /// 业务场景对应的扩展字段 + /// + [XmlArray("ext")] + [XmlArrayItem("order_ext")] + public List Ext { get; set; } + + /// + /// 订单相关的商品信息 + /// + [XmlArray("goods_info_list")] + [XmlArrayItem("store_order_good")] + public List GoodsInfoList { get; set; } + + /// + /// 订单的描述 + /// + [XmlElement("memo")] + public string Memo { get; set; } + + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 卖家id + /// + [XmlElement("seller_id")] + public string SellerId { get; set; } + + /// + /// 姓名 + /// + [XmlElement("user_name")] + public string UserName { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreSyncResponse.cs b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreSyncResponse.cs new file mode 100644 index 000000000..df1643b5c --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntMerchantOrderStoreSyncResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreSyncResponse. + /// + public class AntMerchantOrderStoreSyncResponse : AopResponse + { + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 订单状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AntfortuneQuotationResearchdataQueryResponse.cs b/AlipaySDKNet.Standard/Response/AntfortuneQuotationResearchdataQueryResponse.cs new file mode 100644 index 000000000..9044e0881 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AntfortuneQuotationResearchdataQueryResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntfortuneQuotationResearchdataQueryResponse. + /// + public class AntfortuneQuotationResearchdataQueryResponse : AopResponse + { + /// + /// 结果码 + /// + [XmlElement("result_code")] + public string ResultCode { get; set; } + + /// + /// 金融信息数据返回值,datatable的json形式。 + /// + [XmlElement("result_content")] + public string ResultContent { get; set; } + + /// + /// 结果的描述 + /// + [XmlElement("result_desc")] + public string ResultDesc { get; set; } + + /// + /// 是否本次请求成功 + /// + [XmlElement("result_success")] + public bool ResultSuccess { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AnttechAiCvOcrBusinesslicenseIdentifyResponse.cs b/AlipaySDKNet.Standard/Response/AnttechAiCvOcrBusinesslicenseIdentifyResponse.cs new file mode 100644 index 000000000..3a0fae8bd --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AnttechAiCvOcrBusinesslicenseIdentifyResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechAiCvOcrBusinesslicenseIdentifyResponse. + /// + public class AnttechAiCvOcrBusinesslicenseIdentifyResponse : AopResponse + { + /// + /// 算法错误信息 + /// + [XmlElement("algo_msg")] + public string AlgoMsg { get; set; } + + /// + /// 算法异常错误码 + /// + [XmlElement("algo_ret")] + public long AlgoRet { get; set; } + + /// + /// 框架错误信息 + /// + [XmlElement("message")] + public string Message { get; set; } + + /// + /// 算法结果,JSON String + /// + [XmlElement("result")] + public string Result { get; set; } + + /// + /// 框架inference服务错误码,0为正常 + /// + [XmlElement("ret")] + public long Ret { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AnttechAiCvOcrVatinvoiceIdentifyResponse.cs b/AlipaySDKNet.Standard/Response/AnttechAiCvOcrVatinvoiceIdentifyResponse.cs new file mode 100644 index 000000000..5df67d36d --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AnttechAiCvOcrVatinvoiceIdentifyResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechAiCvOcrVatinvoiceIdentifyResponse. + /// + public class AnttechAiCvOcrVatinvoiceIdentifyResponse : AopResponse + { + /// + /// 算法错误信息 + /// + [XmlElement("algo_msg")] + public string AlgoMsg { get; set; } + + /// + /// 算法异常错误码 + /// + [XmlElement("algo_ret")] + public string AlgoRet { get; set; } + + /// + /// 框架错误信息 + /// + [XmlElement("message")] + public string Message { get; set; } + + /// + /// 算法结果,JSON String + /// + [XmlElement("result")] + public string Result { get; set; } + + /// + /// 框架inference服务错误码,0为正常 + /// + [XmlElement("ret")] + public string Ret { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AnttechAiCvTfjsModelQueryResponse.cs b/AlipaySDKNet.Standard/Response/AnttechAiCvTfjsModelQueryResponse.cs index 0e7595f07..4f91724cd 100644 --- a/AlipaySDKNet.Standard/Response/AnttechAiCvTfjsModelQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AnttechAiCvTfjsModelQueryResponse.cs @@ -1,5 +1,6 @@ using System; using System.Xml.Serialization; +using System.Collections.Generic; namespace Aop.Api.Response { @@ -9,11 +10,18 @@ namespace Aop.Api.Response public class AnttechAiCvTfjsModelQueryResponse : AopResponse { /// - /// tfjs端模型bin文件下载url + /// 已废弃 /// [XmlElement("bin_url")] public string BinUrl { get; set; } + /// + /// 模型bin文件的下载地址 + /// + [XmlArray("bin_urls")] + [XmlArrayItem("string")] + public List BinUrls { get; set; } + /// /// tfjs端模型json文件下载url /// diff --git a/AlipaySDKNet.Standard/Response/AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse.cs b/AlipaySDKNet.Standard/Response/AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse.cs new file mode 100644 index 000000000..64d0f021c --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse. + /// + public class AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse : AopResponse + { + /// + /// 返回值 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 额外信息,非json形式,如 + /// + [XmlElement("extra_info")] + public string ExtraInfo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/KoubeiShopWxloginQueryResponse.cs b/AlipaySDKNet.Standard/Response/KoubeiShopWxloginQueryResponse.cs new file mode 100644 index 000000000..32887772f --- /dev/null +++ b/AlipaySDKNet.Standard/Response/KoubeiShopWxloginQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// KoubeiShopWxloginQueryResponse. + /// + public class KoubeiShopWxloginQueryResponse : AopResponse + { + /// + /// 用户唯一标识的 openid + /// + [XmlElement("openid")] + public string Openid { get; set; } + + /// + /// 会话密钥 + /// + [XmlElement("session_key")] + public string SessionKey { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayAmountQueryResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayAmountQueryResponse.cs new file mode 100644 index 000000000..cfc834e21 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayAmountQueryResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayAmountQueryResponse. + /// + public class MybankCreditSupplychainCreditpayAmountQueryResponse : AopResponse + { + /// + /// 准入标志 + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 可用额度 + /// + [XmlElement("available_amt")] + public string AvailableAmt { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 授信额度 + /// + [XmlElement("total_amt")] + public string TotalAmt { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBillQueryResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBillQueryResponse.cs new file mode 100644 index 000000000..fae33bf41 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBillQueryResponse.cs @@ -0,0 +1,78 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBillQueryResponse. + /// + public class MybankCreditSupplychainCreditpayBillQueryResponse : AopResponse + { + /// + /// 余额总金额 + /// + [XmlElement("balance_amt")] + public string BalanceAmt { get; set; } + + /// + /// 余额罚息金额 + /// + [XmlElement("balance_int_amt")] + public string BalanceIntAmt { get; set; } + + /// + /// 余额本金金额 + /// + [XmlElement("balance_prin_amt")] + public string BalancePrinAmt { get; set; } + + /// + /// 入账金额 + /// + [XmlElement("bill_amt")] + public string BillAmt { get; set; } + + /// + /// 出账日期 + /// + [XmlElement("bill_date")] + public string BillDate { get; set; } + + /// + /// 账单罚息金额 + /// + [XmlElement("bill_int_amt")] + public string BillIntAmt { get; set; } + + /// + /// 账单本金金额 + /// + [XmlElement("bill_prin_amt")] + public string BillPrinAmt { get; set; } + + /// + /// 买方信息,这里是ISV的信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 账单状态:NOR/CLR/OVD + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 网商日志ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyersignCreateResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyersignCreateResponse.cs new file mode 100644 index 000000000..46a04e2fb --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyersignCreateResponse.cs @@ -0,0 +1,53 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBuyersignCreateResponse. + /// + public class MybankCreditSupplychainCreditpayBuyersignCreateResponse : AopResponse + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 签约失败原因,签约失败时返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// ipId + /// + [XmlElement("ip_id")] + public string IpId { get; set; } + + /// + /// ipRoleId + /// + [XmlElement("ip_role_id")] + public string IpRoleId { get; set; } + + /// + /// 是否可重试 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// 是否签约成功:true/false + /// + [XmlElement("sign_result")] + public bool SignResult { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyerunsignCreateResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyerunsignCreateResponse.cs new file mode 100644 index 000000000..fa3c2e5a1 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyerunsignCreateResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignCreateResponse. + /// + public class MybankCreditSupplychainCreditpayBuyerunsignCreateResponse : AopResponse + { + /// + /// 失败原因码:解约失败时返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// 是否可以重试 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 解约结果 + /// + [XmlElement("unsign_result")] + public bool UnsignResult { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse.cs new file mode 100644 index 000000000..d03ab0e5e --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse. + /// + public class MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse : AopResponse + { + /// + /// 能否解约:true/false + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 不可解约原因码,失败时返回 + /// + [XmlElement("unadmit_reason")] + public string UnadmitReason { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellersignCreateResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellersignCreateResponse.cs new file mode 100644 index 000000000..51b40f5c1 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellersignCreateResponse.cs @@ -0,0 +1,53 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellersignCreateResponse. + /// + public class MybankCreditSupplychainCreditpaySellersignCreateResponse : AopResponse + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 签约失败时需要,签约失败原因码 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// ipId + /// + [XmlElement("ip_id")] + public string IpId { get; set; } + + /// + /// ipRoleId + /// + [XmlElement("ip_role_id")] + public string IpRoleId { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// 成功与否:true/false + /// + [XmlElement("sign_result")] + public bool SignResult { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellersignadmitQueryResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellersignadmitQueryResponse.cs new file mode 100644 index 000000000..868df8cdd --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellersignadmitQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellersignadmitQueryResponse. + /// + public class MybankCreditSupplychainCreditpaySellersignadmitQueryResponse : AopResponse + { + /// + /// 准入/不准入:true/false + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 签约不准入原因 + /// + [XmlElement("unadmit_reason")] + public string UnadmitReason { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellerunsignCreateResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellerunsignCreateResponse.cs new file mode 100644 index 000000000..3ed90f4fa --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellerunsignCreateResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignCreateResponse. + /// + public class MybankCreditSupplychainCreditpaySellerunsignCreateResponse : AopResponse + { + /// + /// 失败原因码,解约失败时返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// 是否可重试 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 解约结果:true/false + /// + [XmlElement("unsign_result")] + public bool UnsignResult { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellerunsignQueryResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellerunsignQueryResponse.cs new file mode 100644 index 000000000..715e35b45 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpaySellerunsignQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignQueryResponse. + /// + public class MybankCreditSupplychainCreditpaySellerunsignQueryResponse : AopResponse + { + /// + /// 是否可解约 + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 日志id + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 不可解约原因码,解约失败时返回 + /// + [XmlElement("unadmit_reason")] + public string UnadmitReason { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayTradeQueryResponse.cs b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayTradeQueryResponse.cs new file mode 100644 index 000000000..41077bb23 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/MybankCreditSupplychainCreditpayTradeQueryResponse.cs @@ -0,0 +1,96 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayTradeQueryResponse. + /// + public class MybankCreditSupplychainCreditpayTradeQueryResponse : AopResponse + { + /// + /// 买方信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 确认收货金额 + /// + [XmlElement("confirm_amt")] + public string ConfirmAmt { get; set; } + + /// + /// 创建日期 + /// + [XmlElement("create_date")] + public string CreateDate { get; set; } + + /// + /// 生效日期 + /// + [XmlElement("effect_date")] + public string EffectDate { get; set; } + + /// + /// 外部订单号 + /// + [XmlElement("out_order_no")] + public string OutOrderNo { get; set; } + + /// + /// 退款金额,单位:分 + /// + [XmlElement("refund_amt")] + public string RefundAmt { get; set; } + + /// + /// 卖方信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// 源订单ID,1688订单ID + /// + [XmlElement("source_order_no")] + public string SourceOrderNo { get; set; } + + /// + /// 订单状态:VALID/INVALID/INIT/CANCEL + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 网商日志追踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 订单金额,单位:分 + /// + [XmlElement("trade_amt")] + public string TradeAmt { get; set; } + + /// + /// 内部订单号 + /// + [XmlElement("trade_no")] + public string TradeNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/ZhimaMerchantContractCommonConfirmResponse.cs b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractCommonConfirmResponse.cs new file mode 100644 index 000000000..4d05e3efc --- /dev/null +++ b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractCommonConfirmResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractCommonConfirmResponse. + /// + public class ZhimaMerchantContractCommonConfirmResponse : AopResponse + { + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/ZhimaMerchantContractCommonQueryResponse.cs b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractCommonQueryResponse.cs new file mode 100644 index 000000000..4c7b481d0 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractCommonQueryResponse.cs @@ -0,0 +1,191 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractCommonQueryResponse. + /// + public class ZhimaMerchantContractCommonQueryResponse : AopResponse + { + /// + /// 取消的操作主体 用于区分是系统取消还是用户主动取消 + /// + [XmlElement("cancel_operator")] + public string CancelOperator { get; set; } + + /// + /// 是否支持取消 + /// + [XmlElement("cancel_supported")] + public bool CancelSupported { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 合约状态 INIT:初始化,待应约状态 EFFECT:生效 COMPLETE:完结 CLOSE:关闭 INVALID:失效 + /// + [XmlElement("contract_status")] + public string ContractStatus { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 应约时间 + /// + [XmlElement("gmt_accept")] + public string GmtAccept { get; set; } + + /// + /// 合约取消时间 + /// + [XmlElement("gmt_cancel")] + public string GmtCancel { get; set; } + + /// + /// 逾期时间 + /// + [XmlElement("gmt_due")] + public string GmtDue { get; set; } + + /// + /// 合约完结时间 + /// + [XmlElement("gmt_end")] + public string GmtEnd { get; set; } + + /// + /// 合约生效时间 + /// + [XmlElement("gmt_valid")] + public string GmtValid { get; set; } + + /// + /// 事项结束时间 + /// + [XmlElement("item_end_time")] + public string ItemEndTime { get; set; } + + /// + /// 事项号 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 事项开始时间 + /// + [XmlElement("item_start_time")] + public string ItemStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + + /// + /// 事项下标的信息 + /// + [XmlElement("subjects")] + public string Subjects { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOfferModifyResponse.cs b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOfferModifyResponse.cs new file mode 100644 index 000000000..9c5970648 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOfferModifyResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractOfferModifyResponse. + /// + public class ZhimaMerchantContractOfferModifyResponse : AopResponse + { + /// + /// 业务操作结果,成功或失败 + /// + [XmlElement("biz_result")] + public string BizResult { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOfferQueryResponse.cs b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOfferQueryResponse.cs new file mode 100644 index 000000000..574753a68 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOfferQueryResponse.cs @@ -0,0 +1,107 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractOfferQueryResponse. + /// + public class ZhimaMerchantContractOfferQueryResponse : AopResponse + { + /// + /// 此类目为分配给商户在内容下的不同类目分类,(如直播/电影类目) + /// + [XmlElement("category_code")] + public string CategoryCode { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容名称 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOnofferQueryResponse.cs b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOnofferQueryResponse.cs new file mode 100644 index 000000000..18c6d4c39 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractOnofferQueryResponse.cs @@ -0,0 +1,185 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractOnofferQueryResponse. + /// + public class ZhimaMerchantContractOnofferQueryResponse : AopResponse + { + /// + /// 取消的操作主体 用于区分是系统取消还是用户主动取消 + /// + [XmlElement("cancel_operator")] + public string CancelOperator { get; set; } + + /// + /// 是否支持取消 + /// + [XmlElement("cancel_supported")] + public bool CancelSupported { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 合约状态 INIT:初始化,待应约状态 EFFECT:生效 COMPLETE:完结 CLOSE:关闭 INVALID:失效 + /// + [XmlElement("contract_status")] + public string ContractStatus { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 应约时间 + /// + [XmlElement("gmt_accept")] + public string GmtAccept { get; set; } + + /// + /// 合约取消时间 + /// + [XmlElement("gmt_cancel")] + public string GmtCancel { get; set; } + + /// + /// 逾期时间 + /// + [XmlElement("gmt_due")] + public string GmtDue { get; set; } + + /// + /// 合约完结时间 + /// + [XmlElement("gmt_end")] + public string GmtEnd { get; set; } + + /// + /// 事项结束时间 + /// + [XmlElement("item_end_time")] + public string ItemEndTime { get; set; } + + /// + /// 事项号 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 事项开始时间 + /// + [XmlElement("item_start_time")] + public string ItemStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + + /// + /// 事项下标的信息 + /// + [XmlElement("subjects")] + public string Subjects { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/ZhimaMerchantContractQuickCreateResponse.cs b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractQuickCreateResponse.cs new file mode 100644 index 000000000..408abca35 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/ZhimaMerchantContractQuickCreateResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractQuickCreateResponse. + /// + public class ZhimaMerchantContractQuickCreateResponse : AopResponse + { + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + } +} diff --git a/AlipaySDKNet/AlipaySDKNet.csproj b/AlipaySDKNet/AlipaySDKNet.csproj index 0ff4379a7..9d8ff6c4a 100644 --- a/AlipaySDKNet/AlipaySDKNet.csproj +++ b/AlipaySDKNet/AlipaySDKNet.csproj @@ -10,7 +10,7 @@ AlipaySDKNet AlipaySDKNet AlipaySDKNet - 4.2.30 + 4.2.73 antopen zh 支付宝开放平台官方SDK,支持.Net Framework 3.5(SP1)及其以上版本。 @@ -99,6 +99,12 @@ + + + + + + @@ -252,6 +258,16 @@ + + + + + + + + + + @@ -343,6 +359,7 @@ + @@ -796,6 +813,7 @@ + @@ -804,7 +822,10 @@ + + + @@ -829,16 +850,24 @@ + + + + + + + + @@ -924,7 +953,6 @@ - @@ -970,6 +998,11 @@ + + + + + @@ -1034,6 +1067,9 @@ + + + @@ -1150,6 +1186,10 @@ + + + + @@ -1174,6 +1214,8 @@ + + @@ -1315,6 +1357,8 @@ + + @@ -1659,6 +1703,7 @@ + @@ -1875,6 +1920,17 @@ + + + + + + + + + + + @@ -2010,6 +2066,7 @@ + @@ -2050,6 +2107,7 @@ + @@ -2070,6 +2128,7 @@ + @@ -2464,6 +2523,7 @@ + @@ -2565,6 +2625,7 @@ + @@ -2591,6 +2652,18 @@ + + + + + + + + + + + + @@ -2619,6 +2692,7 @@ + @@ -2630,6 +2704,7 @@ + @@ -2786,6 +2861,7 @@ + @@ -2904,6 +2980,7 @@ + @@ -2929,6 +3006,12 @@ + + + + + + @@ -3014,7 +3097,6 @@ - @@ -3120,6 +3202,8 @@ + + @@ -3156,6 +3240,7 @@ + @@ -3173,6 +3258,8 @@ + + @@ -3241,6 +3328,7 @@ + @@ -3256,6 +3344,8 @@ + + @@ -3279,6 +3369,7 @@ + @@ -3296,7 +3387,24 @@ + + + + + + + + + + + + + + + + + @@ -3390,6 +3498,7 @@ + @@ -3517,15 +3626,18 @@ + + + @@ -3557,6 +3669,8 @@ + + @@ -3564,6 +3678,7 @@ + @@ -3586,13 +3701,17 @@ + + + + @@ -3657,6 +3776,16 @@ + + + + + + + + + + @@ -3918,6 +4047,7 @@ + @@ -4560,6 +4690,7 @@ + @@ -4609,6 +4740,8 @@ + + @@ -4678,6 +4811,7 @@ + @@ -4687,6 +4821,7 @@ + @@ -4742,6 +4877,7 @@ + @@ -4761,6 +4897,8 @@ + + @@ -4776,6 +4914,7 @@ + @@ -4856,6 +4995,7 @@ + @@ -4886,6 +5026,8 @@ + + @@ -4910,6 +5052,7 @@ + @@ -4974,6 +5117,7 @@ + @@ -5002,6 +5146,8 @@ + + @@ -5012,6 +5158,7 @@ + @@ -5064,6 +5211,8 @@ + + @@ -5151,6 +5300,7 @@ + @@ -5158,6 +5308,8 @@ + + @@ -5166,16 +5318,24 @@ + + + + + + + + @@ -5259,6 +5419,7 @@ + @@ -5322,6 +5483,10 @@ + + + + @@ -5390,6 +5555,9 @@ + + + @@ -5492,7 +5660,11 @@ + + + + @@ -5516,6 +5688,8 @@ + + @@ -5639,6 +5813,8 @@ + + @@ -6055,6 +6231,15 @@ + + + + + + + + + @@ -6189,6 +6374,7 @@ + @@ -6236,6 +6422,7 @@ + @@ -6256,6 +6443,7 @@ + @@ -6623,6 +6811,7 @@ + @@ -6715,6 +6904,7 @@ + @@ -6739,6 +6929,18 @@ + + + + + + + + + + + + @@ -6767,6 +6969,7 @@ + @@ -6778,6 +6981,7 @@ + @@ -6927,6 +7131,7 @@ + @@ -7113,6 +7318,12 @@ + + + + + + @@ -7266,6 +7477,16 @@ + + + + + + + + + + @@ -7357,6 +7578,7 @@ + @@ -7810,6 +8032,7 @@ + @@ -7818,7 +8041,10 @@ + + + @@ -7843,16 +8069,24 @@ + + + + + + + + @@ -7938,7 +8172,6 @@ - @@ -7984,6 +8217,11 @@ + + + + + @@ -8048,6 +8286,9 @@ + + + @@ -8164,6 +8405,10 @@ + + + + @@ -8188,6 +8433,8 @@ + + @@ -8329,6 +8576,8 @@ + + @@ -8673,6 +8922,7 @@ + @@ -8889,6 +9139,17 @@ + + + + + + + + + + + @@ -9024,6 +9285,7 @@ + @@ -9064,6 +9326,7 @@ + @@ -9084,6 +9347,7 @@ + @@ -9478,6 +9742,7 @@ + @@ -9579,6 +9844,7 @@ + @@ -9605,6 +9871,18 @@ + + + + + + + + + + + + @@ -9633,6 +9911,7 @@ + @@ -9644,6 +9923,7 @@ + @@ -9800,6 +10080,7 @@ + diff --git a/AlipaySDKNet/Domain/AlipayCommerceAirCallcenterTradeApplyModel.cs b/AlipaySDKNet/Domain/AlipayCommerceAirCallcenterTradeApplyModel.cs new file mode 100644 index 000000000..2960c7ec8 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayCommerceAirCallcenterTradeApplyModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayCommerceAirCallcenterTradeApplyModel Data Structure. + /// + [Serializable] + public class AlipayCommerceAirCallcenterTradeApplyModel : AopObject + { + /// + /// 订单费用详情,用于在订单确认页面展示 + /// + [XmlElement("amount_detail")] + public string AmountDetail { get; set; } + + /// + /// 接口请求渠道编码,由支付宝提供 + /// + [XmlElement("channel")] + public string Channel { get; set; } + + /// + /// 接口版本号 + /// + [XmlElement("interface_version")] + public string InterfaceVersion { get; set; } + + /// + /// 用于标识操作模型,由支付宝配置提供 + /// + [XmlElement("op_code")] + public string OpCode { get; set; } + + /// + /// 场景的数据表示. json 数组格式,根据场景不同的模型传入不同参数,由支付宝负责提供参数集合 + /// + [XmlElement("order_detail")] + public string OrderDetail { get; set; } + + /// + /// 用于标识数据模型,由支付宝配置提供 + /// + [XmlElement("scene_code")] + public string SceneCode { get; set; } + + /// + /// 场景覆盖的目标人群标识,支持支付宝userId、身份证号、支付宝登录号、支付宝绑定手机号; + /// + [XmlElement("target_id")] + public string TargetId { get; set; } + + /// + /// 场景覆盖人群id类型 + /// + [XmlElement("target_id_type")] + public string TargetIdType { get; set; } + + /// + /// 交易请求参数 + /// + [XmlElement("trade_apply_params")] + public CallCenterTradeApplyParams TradeApplyParams { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs b/AlipaySDKNet/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs index 0760be644..03409ffe7 100644 --- a/AlipaySDKNet/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs +++ b/AlipaySDKNet/Domain/AlipayCommerceIotSdarttoolMessageSendModel.cs @@ -10,7 +10,7 @@ namespace Aop.Api.Domain public class AlipayCommerceIotSdarttoolMessageSendModel : AopObject { /// - /// 当离线消息挤压太多时,若设备上线将获取所有未过期的消息。推送太多消息对设备体验不太好,所以此字段用于设置消息是必达。当消息不是必达的 + /// 消息是否必达(immediate_msg为false时此字段设置有效),消息过期时间顺延3*24h. 建议使用expire_time设置消息过期时间 /// [XmlElement("bi_da")] public bool BiDa { get; set; } @@ -34,7 +34,7 @@ public class AlipayCommerceIotSdarttoolMessageSendModel : AopObject public string ItemId { get; set; } /// - /// 根据消息类型有不同的消息模板,传入的消息内容会是多个参数如云打印 {"contentParams":["打印内容"],"target":"打印编号-可选默认第一个","instructionFormat":"template或cmd"} cloud_print: 消息内容详见: https://alipay.open.taobao.com/docs/doc.htm?spm=a219a.7629140.0.0.46cf4b70bQj0aZ&treeId=662&articleId=117980&docType=1#s1 + /// 消息内容(xpaas_common:{"contentParams":["消息内容"]};audio_msg:{"contentParams":["语音内容"]};cloud_print:{"contentParams":["打印内容"],"target":"打印编号-可选默认第一个","instructionFormat":"template或cmd"}) /// [XmlElement("msg_content")] public string MsgContent { get; set; } @@ -46,19 +46,19 @@ public class AlipayCommerceIotSdarttoolMessageSendModel : AopObject public string MsgContentType { get; set; } /// - /// 消息过期时间戳(单位秒), 默认为当前时间延期3天有效。若消息在此时间之前未推送,将不再推送(必达消息会永久保留直到推送成功) + /// 消息过期时间戳(ms), 默认为当前时间顺延24h有效。当设备在线时消息服务过期之前尝试推送。最大过期时间顺延3*24h /// [XmlElement("msg_expire")] public long MsgExpire { get; set; } /// - /// 离线消息,当设备在线时消息优先发送级别,越大优先级域高(优先级为正整数)。 + /// 消息优先级(immediate_msg为false此字段设置有效)数字越大优先发送。 /// [XmlElement("msg_priority")] public long MsgPriority { get; set; } /// - /// 消息类型 + /// 消息类型(通用消息: xpaas_common;语音消息: audio_msg;云打印: cloud_print) /// [XmlElement("msg_type")] public string MsgType { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayCommerceMedicalCardQueryModel.cs b/AlipaySDKNet/Domain/AlipayCommerceMedicalCardQueryModel.cs index f3e48c153..84052c963 100644 --- a/AlipaySDKNet/Domain/AlipayCommerceMedicalCardQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayCommerceMedicalCardQueryModel.cs @@ -33,6 +33,12 @@ public class AlipayCommerceMedicalCardQueryModel : AopObject [XmlElement("extend_params")] public string ExtendParams { get; set; } + /// + /// 机构类型:医保(YB),人社(RS) 默认为RS + /// + [XmlElement("ins_type")] + public string InsType { get; set; } + /// /// 跳回的地址 /// @@ -44,5 +50,11 @@ public class AlipayCommerceMedicalCardQueryModel : AopObject /// [XmlElement("scene")] public string Scene { get; set; } + + /// + /// 版本号 + /// + [XmlElement("version_no")] + public string VersionNo { get; set; } } } diff --git a/AlipaySDKNet/Domain/AlipayCommerceTransportEtcApplySyncModel.cs b/AlipaySDKNet/Domain/AlipayCommerceTransportEtcApplySyncModel.cs index 20bfabcb7..cb1f1ea7c 100644 --- a/AlipaySDKNet/Domain/AlipayCommerceTransportEtcApplySyncModel.cs +++ b/AlipaySDKNet/Domain/AlipayCommerceTransportEtcApplySyncModel.cs @@ -64,7 +64,7 @@ public class AlipayCommerceTransportEtcApplySyncModel : AopObject public string DeviceNo { get; set; } /// - /// 设备状态 0:未发货 1:已发货 2:运输中 3:已签收 4:已二发 5:已激活 6:退货中 7:已退货 8:换货中 9:设备已注销 + /// 设备状态 0:未发货 1:已发货 2:运输中 3:已签收 4:已二发 5:已激活 6:退货中 7:已退货 8:换货中 9:设备已注销 10:设备注销失败 11:已发卡 12:已发签 /// [XmlElement("device_status")] public string DeviceStatus { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayCommerceTransportTaxiDriverSendModel.cs b/AlipaySDKNet/Domain/AlipayCommerceTransportTaxiDriverSendModel.cs new file mode 100644 index 000000000..6185a0930 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayCommerceTransportTaxiDriverSendModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayCommerceTransportTaxiDriverSendModel Data Structure. + /// + [Serializable] + public class AlipayCommerceTransportTaxiDriverSendModel : AopObject + { + /// + /// 支付宝账号 + /// + [XmlElement("alipay_account")] + public string AlipayAccount { get; set; } + + /// + /// 车牌号 + /// + [XmlElement("car_no")] + public string CarNo { get; set; } + + /// + /// 司机身份证号 + /// + [XmlElement("driver_cert_no")] + public string DriverCertNo { get; set; } + + /// + /// 司机工号 + /// + [XmlElement("driver_job_no")] + public string DriverJobNo { get; set; } + + /// + /// 司机姓名 + /// + [XmlElement("driver_name")] + public string DriverName { get; set; } + + /// + /// 司机手机号 + /// + [XmlElement("driver_phone")] + public string DriverPhone { get; set; } + + /// + /// 扩展信息 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 来源方,由支付宝分配 + /// + [XmlElement("source")] + public string Source { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayCommerceTransportVehicleownerTransdataSyncModel.cs b/AlipaySDKNet/Domain/AlipayCommerceTransportVehicleownerTransdataSyncModel.cs new file mode 100644 index 000000000..0a36c30a2 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayCommerceTransportVehicleownerTransdataSyncModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayCommerceTransportVehicleownerTransdataSyncModel Data Structure. + /// + [Serializable] + public class AlipayCommerceTransportVehicleownerTransdataSyncModel : AopObject + { + /// + /// 同步操作类型 + /// + [XmlElement("action_type")] + public string ActionType { get; set; } + + /// + /// 同步数据 + /// + [XmlElement("trans_data")] + public string TransData { get; set; } + + /// + /// 支付宝uid + /// + [XmlElement("uid")] + public string Uid { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualconfigGetModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualconfigGetModel.cs new file mode 100644 index 000000000..7bf97dcf6 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualconfigGetModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigGetModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualconfigGetModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualconfigSetModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualconfigSetModel.cs new file mode 100644 index 000000000..28f0d7049 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualconfigSetModel.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigSetModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualconfigSetModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 配制名称 + /// + [XmlElement("config_name")] + public string ConfigName { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 日期列表 + /// + [XmlArray("date")] + [XmlArrayItem("string")] + public List Date { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtaskAddModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtaskAddModel.cs new file mode 100644 index 000000000..d0ec78922 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtaskAddModel.cs @@ -0,0 +1,72 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtaskAddModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 下行场站配车数 + /// + [XmlElement("down_bus_cnt")] + public long DownBusCnt { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 排班任务 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + + /// + /// 排班 + /// + [XmlElement("time_table_pid")] + public string TimeTablePid { get; set; } + + /// + /// 上行场站配车数 + /// + [XmlElement("up_bus_cnt")] + public long UpBusCnt { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtaskQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtaskQueryModel.cs new file mode 100644 index 000000000..178395729 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtaskQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtaskQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeAddModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeAddModel.cs new file mode 100644 index 000000000..7eb918ac8 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeAddModel.cs @@ -0,0 +1,56 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtasktimeAddModel : AopObject + { + /// + /// 版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 客流预测任务id + /// + [XmlElement("bus_od_pid")] + public string BusOdPid { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 时刻表线路信息 + /// + [XmlArray("line_info")] + [XmlArrayItem("input_schedule_time")] + public List LineInfo { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 任务名称 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel.cs new file mode 100644 index 000000000..96472d616 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusSchedualtasktimeQueryModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletasklistQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletasklistQueryModel.cs new file mode 100644 index 000000000..bf867e2b7 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletasklistQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletasklistQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletasklistQueryModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 任务类型: 枚举: 0:客流接口 1: 时刻表接口 2:排班接口 3:轮班接口 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskodAddModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskodAddModel.cs new file mode 100644 index 000000000..2af3ad706 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskodAddModel.cs @@ -0,0 +1,50 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskodAddModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 城市码 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 配制id + /// + [XmlElement("config_id")] + public string ConfigId { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 线路信息 + /// + [XmlArray("line_info")] + [XmlArrayItem("input_schedule_line")] + public List LineInfo { get; set; } + + /// + /// 任务描述 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskodQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskodQueryModel.cs new file mode 100644 index 000000000..3045949ae --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskodQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskodQueryModel : AopObject + { + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftAddModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftAddModel.cs new file mode 100644 index 000000000..b6bc08008 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftAddModel.cs @@ -0,0 +1,75 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftAddModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskshiftAddModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 待轮班的日期天数 + /// + [XmlElement("cycle_cnt")] + public long CycleCnt { get; set; } + + /// + /// 该线路配备的司机数 + /// + [XmlElement("driver_cnt")] + public long DriverCnt { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 待排班的时期列表,多个用逗号分隔 + /// + [XmlArray("shift_date_list")] + [XmlArrayItem("string")] + public List ShiftDateList { get; set; } + + /// + /// 任务名称 + /// + [XmlElement("task_name")] + public string TaskName { get; set; } + + /// + /// 排班任务id + /// + [XmlArray("work_schedule_pids")] + [XmlArrayItem("string")] + public List WorkSchedulePids { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel.cs new file mode 100644 index 000000000..5a41708c2 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletaskshiftQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletriptimeGetModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletriptimeGetModel.cs new file mode 100644 index 000000000..200909751 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusScheduletriptimeGetModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusScheduletriptimeGetModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusScheduletriptimeGetModel : AopObject + { + /// + /// mean/max/pert_95 + /// + [XmlElement("aggregate_type")] + public string AggregateType { get; set; } + + /// + /// 接口版本 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 配制id + /// + [XmlElement("config_id")] + public string ConfigId { get; set; } + + /// + /// 公交公司id + /// + [XmlElement("corp_id")] + public string CorpId { get; set; } + + /// + /// 5/10/15/20/30/60 Long 时间粒度(单位分钟) + /// + [XmlElement("time_span")] + public long TimeSpan { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataDataserviceAdDataQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataDataserviceAdDataQueryModel.cs new file mode 100644 index 000000000..f4c5f27aa --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataDataserviceAdDataQueryModel.cs @@ -0,0 +1,56 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataDataserviceAdDataQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataDataserviceAdDataQueryModel : AopObject + { + /// + /// 汇总数据广告层级类型,如PLAN-计划;GROUP-单元;CREATIVE-创意;USER-用户 + /// + [XmlElement("ad_level")] + public string AdLevel { get; set; } + + /// + /// 灯火平台提供给外部系统的访问token + /// + [XmlElement("biz_token")] + public string BizToken { get; set; } + + /// + /// 当ad_level='USER',该入参必填, 计费方式: CPC-按点击付费 CPM-按展示次数付费 CPD-按投放天数计费(包段) CPA-按转化效果计费 + /// + [XmlElement("charge_type")] + public string ChargeType { get; set; } + + /// + /// 数据查询开始时间,查询时间间隔不能大于30天,点时间格式:yyyyMMdd + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 外部平台导入广告库后,广告投放层级的对应的外部资源ID、商户PID,list最大长度为1000 + /// + [XmlArray("outer_id_list")] + [XmlArrayItem("string")] + public List OuterIdList { get; set; } + + /// + /// 数据查询类型,默认为ALL_SUM,如GROUP_SUM-日期范围内outer_id_list中根据id group by后进行数据求和;ALL_SUM-日期范围内outer_id_list中所有数据求和;DETAIL-数据详情 + /// + [XmlElement("query_type")] + public string QueryType { get; set; } + + /// + /// 数据查询开始时间,查询时间间隔不能大于30天,点时间格式:yyyyMMdd + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs b/AlipaySDKNet/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs index 2a1c3a87c..ad03b3c31 100644 --- a/AlipaySDKNet/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs +++ b/AlipaySDKNet/Domain/AlipayDataDataserviceAdGroupCreateormodifyModel.cs @@ -16,6 +16,18 @@ public class AlipayDataDataserviceAdGroupCreateormodifyModel : AopObject [XmlElement("biz_token")] public string BizToken { get; set; } + /// + /// 转化事件编号。若此字段不为空,则要求conversion_type也不为空,且此转化事件与转化事件类型conversion_type匹配 + /// + [XmlElement("conversion_id")] + public string ConversionId { get; set; } + + /// + /// 转化事件类型: CPA_TAO_XI:淘系店铺关注 CPA_TMALL_MEMBER_JOIN:淘系店铺入会 + /// + [XmlElement("conversion_type")] + public string ConversionType { get; set; } + /// /// 业务扩展参数字段,根据第三方需要使用,投放端只做存储并向检索端透传 /// diff --git a/AlipaySDKNet/Domain/AlipayEbppDetectCreateModel.cs b/AlipaySDKNet/Domain/AlipayEbppDetectCreateModel.cs index 484ef1e38..01f20d3f2 100644 --- a/AlipaySDKNet/Domain/AlipayEbppDetectCreateModel.cs +++ b/AlipaySDKNet/Domain/AlipayEbppDetectCreateModel.cs @@ -23,7 +23,7 @@ public class AlipayEbppDetectCreateModel : AopObject public string DataFromType { get; set; } /// - /// 外部业务标识 + /// 外部业务标识.如pipelineId /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } @@ -34,5 +34,17 @@ public class AlipayEbppDetectCreateModel : AopObject [XmlArray("service_list")] [XmlArrayItem("detect_service_entity")] public List ServiceList { get; set; } + + /// + /// 小程序appId + /// + [XmlElement("tinyapp_id")] + public string TinyappId { get; set; } + + /// + /// 小程序pid + /// + [XmlElement("tinyapp_partner_id")] + public string TinyappPartnerId { get; set; } } } diff --git a/AlipaySDKNet/Domain/AlipayEbppDetectReportQueryModel.cs b/AlipaySDKNet/Domain/AlipayEbppDetectReportQueryModel.cs index dab7a9ca7..fb8778441 100644 --- a/AlipaySDKNet/Domain/AlipayEbppDetectReportQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayEbppDetectReportQueryModel.cs @@ -10,7 +10,19 @@ namespace Aop.Api.Domain public class AlipayEbppDetectReportQueryModel : AopObject { /// - /// 外部业务标识 + /// 业务类型 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 业务唯一id. 如迭代id + /// + [XmlElement("biz_unique_id")] + public string BizUniqueId { get; set; } + + /// + /// 外部业务标识.如pipeline id、蚂蚁流id等 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayEbppInspectNotifyModel.cs b/AlipaySDKNet/Domain/AlipayEbppInspectNotifyModel.cs new file mode 100644 index 000000000..553b8f118 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayEbppInspectNotifyModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayEbppInspectNotifyModel Data Structure. + /// + [Serializable] + public class AlipayEbppInspectNotifyModel : AopObject + { + /// + /// 引擎函数名称 + /// + [XmlElement("function_name")] + public string FunctionName { get; set; } + + /// + /// 任务id + /// + [XmlElement("job_id")] + public string JobId { get; set; } + + /// + /// 检测日志链接 + /// + [XmlElement("log_url")] + public string LogUrl { get; set; } + + /// + /// 引擎检测结果 + /// + [XmlElement("result")] + public string Result { get; set; } + + /// + /// 任务执行状态 + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 时间节点描述 + /// + [XmlElement("timing")] + public string Timing { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayEcoMycarParkingOrderPayModel.cs b/AlipaySDKNet/Domain/AlipayEcoMycarParkingOrderPayModel.cs index 03d592c3e..71a7b8ce2 100644 --- a/AlipaySDKNet/Domain/AlipayEcoMycarParkingOrderPayModel.cs +++ b/AlipaySDKNet/Domain/AlipayEcoMycarParkingOrderPayModel.cs @@ -40,7 +40,7 @@ public class AlipayEcoMycarParkingOrderPayModel : AopObject public bool IsAdvance { get; set; } /// - /// ISV停车场ID,由ISV定义的停车场标识,系统唯一,parking_id和out_parking_id不能同时为空 + /// ISV停车场ID,由ISV定义的停车场标识,系统唯一,必填 /// [XmlElement("out_parking_id")] public string OutParkingId { get; set; } @@ -52,7 +52,7 @@ public class AlipayEcoMycarParkingOrderPayModel : AopObject public string OutTradeNo { get; set; } /// - /// 支付宝停车平台ID,由支付宝定义的该停车场标识,系统唯一, parking_id和out_parking_id不能同时为空 + /// 支付宝停车平台ID,由支付宝定义的该停车场标识,系统唯一, 必填 /// [XmlElement("parking_id")] public string ParkingId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayFundTransAppPayModel.cs b/AlipaySDKNet/Domain/AlipayFundTransAppPayModel.cs index 4db19d259..1548a6232 100644 --- a/AlipaySDKNet/Domain/AlipayFundTransAppPayModel.cs +++ b/AlipaySDKNet/Domain/AlipayFundTransAppPayModel.cs @@ -16,11 +16,17 @@ public class AlipayFundTransAppPayModel : AopObject public string BizScene { get; set; } /// - /// JSON格式,传递业务扩展参数. 业务扩展字段,JSON格式。支持如下属性: sub_biz_scene 子场景,必填,传REDPACKET payer_binded_alipay_id 创建红包的商户会员绑定的支付宝userId,必填 + /// JSON格式,传递业务扩展参数. 业务扩展字段,JSON格式。支持如下属性: sub_biz_scene 子场景,必填,传REDPACKET payer_binded_alipay_uid 创建红包的商户会员绑定的支付宝userId,必填 /// [XmlElement("business_params")] public string BusinessParams { get; set; } + /// + /// 支付宝订单号 + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + /// /// 支付订单的标题,用于在收银台和消费记录展示 /// diff --git a/AlipaySDKNet/Domain/AlipayInsSceneDxDataQueryModel.cs b/AlipaySDKNet/Domain/AlipayInsSceneDxDataQueryModel.cs new file mode 100644 index 000000000..0872ac65f --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayInsSceneDxDataQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayInsSceneDxDataQueryModel Data Structure. + /// + [Serializable] + public class AlipayInsSceneDxDataQueryModel : AopObject + { + /// + /// dx服务名 + /// + [XmlElement("dx_name")] + public string DxName { get; set; } + + /// + /// 请求参数 + /// + [XmlElement("param")] + public string Param { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayInsSceneSellerDataQueryModel.cs b/AlipaySDKNet/Domain/AlipayInsSceneSellerDataQueryModel.cs new file mode 100644 index 000000000..b75db87c1 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayInsSceneSellerDataQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayInsSceneSellerDataQueryModel Data Structure. + /// + [Serializable] + public class AlipayInsSceneSellerDataQueryModel : AopObject + { + /// + /// 目标服务名称 + /// + [XmlElement("dx_name")] + public string DxName { get; set; } + + /// + /// 扩展字段 + /// + [XmlElement("extra_data")] + public string ExtraData { get; set; } + + /// + /// 机构产品号 + /// + [XmlElement("prod_no")] + public string ProdNo { get; set; } + + /// + /// 标准产品号 + /// + [XmlElement("sp_no")] + public string SpNo { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMarketingCampaignCommoneventApplyModel.cs b/AlipaySDKNet/Domain/AlipayMarketingCampaignCommoneventApplyModel.cs new file mode 100644 index 000000000..0ffe11684 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMarketingCampaignCommoneventApplyModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMarketingCampaignCommoneventApplyModel Data Structure. + /// + [Serializable] + public class AlipayMarketingCampaignCommoneventApplyModel : AopObject + { + /// + /// 与event关联的数据 + /// + [XmlElement("content_json")] + public string ContentJson { get; set; } + + /// + /// 事件类型 + /// + [XmlElement("event")] + public string Event { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeMemberremainingQueryModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeMemberremainingQueryModel.cs new file mode 100644 index 000000000..b2b2ab492 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeMemberremainingQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeMemberremainingQueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeMemberremainingQueryModel : AopObject + { + /// + /// 该字段已废弃,请通过user_id查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePayCreateModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePayCreateModel.cs new file mode 100644 index 000000000..05cd146ae --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePayCreateModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePayCreateModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePayCreateModel : AopObject + { + /// + /// 该字段已废弃,请使用user_id字段查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 外部业务号,用于幂等控制一次充值行为 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 充享惠方案ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeProfileSetModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeProfileSetModel.cs new file mode 100644 index 000000000..4aea140cd --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeProfileSetModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeProfileSetModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeProfileSetModel : AopObject + { + /// + /// 充享惠卡模板设置,用户使用充享惠业务领卡后会在支付宝卡包中使用该模板配置创建卡入口 + /// + [XmlElement("card_template_config")] + public PayForPrivilegeCardTemplateConfig CardTemplateConfig { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanCreateModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanCreateModel.cs new file mode 100644 index 000000000..acf2a3966 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanCreateModel.cs @@ -0,0 +1,56 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanCreateModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePromotionplanCreateModel : AopObject + { + /// + /// 充享惠方案权益金部分,最小为0,权益金不超过5000元 + /// + [XmlElement("benefit")] + public string Benefit { get; set; } + + /// + /// 方案的失效时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 外部业务号,外部商户自行生成,用于幂等控制 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 充享惠方案有偿券部分,消费者充值成功后自动发放,如果不需要有偿券,指定空列表;有偿券的总金额不得超过10000元,且不得超过本金的2倍 + /// + [XmlArray("paid_voucher_list")] + [XmlArrayItem("pay_for_privilege_paid_voucher_config")] + public List PaidVoucherList { get; set; } + + /// + /// 充享惠方案本金部分,单位元,必须大于0,本金不超过5000元 + /// + [XmlElement("principal")] + public string Principal { get; set; } + + /// + /// 方案开始生效时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 创建方案后该方案的状态,ENABLED(启用), DISABLED(停用) + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanModifyModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanModifyModel.cs new file mode 100644 index 000000000..fb319ae19 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanModifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanModifyModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePromotionplanModifyModel : AopObject + { + /// + /// 充享惠方案的结束时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 充享惠方案ID,通过创建接口创建的ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + + /// + /// 充享惠方案开始时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 充享惠方案的状态,ENABLED(启用), DISABLED(停用) + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanQueryModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanQueryModel.cs new file mode 100644 index 000000000..66c7b4bfa --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegePromotionplanQueryModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanQueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegePromotionplanQueryModel : AopObject + { + /// + /// 充享惠方案ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUselogBatchqueryModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUselogBatchqueryModel.cs new file mode 100644 index 000000000..bad770c86 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUselogBatchqueryModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeUselogBatchqueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeUselogBatchqueryModel : AopObject + { + /// + /// 业务结束时间,包含该业务时间点,开始时间和结束时间不能超过一年 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 该字段已废弃,请通过 user_id 进行查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 查询的页数,从1开始,最大100 + /// + [XmlElement("page_num")] + public string PageNum { get; set; } + + /// + /// 每页显示的大小,最小1,最大20 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 查询的业务开始时间,包含起始时间点,开始时间和结束时间不能超过一年 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUserrelationCreateModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUserrelationCreateModel.cs new file mode 100644 index 000000000..60c436188 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUserrelationCreateModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationCreateModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeUserrelationCreateModel : AopObject + { + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUserrelationQueryModel.cs b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUserrelationQueryModel.cs new file mode 100644 index 000000000..f377f52e3 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayMerchantPayforprivilegeUserrelationQueryModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationQueryModel Data Structure. + /// + [Serializable] + public class AlipayMerchantPayforprivilegeUserrelationQueryModel : AopObject + { + /// + /// 该字段已废弃,请使用user_id查询 + /// + [XmlElement("member_id")] + public string MemberId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs b/AlipaySDKNet/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs index d95612290..ec2dc26b2 100644 --- a/AlipaySDKNet/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenAppMiniTemplatemessageSendModel.cs @@ -16,7 +16,7 @@ public class AlipayOpenAppMiniTemplatemessageSendModel : AopObject public string Data { get; set; } /// - /// 用户发生的交易行为的交易号,或者用户在小程序产生表单提交的表单号,用于信息发送的校验 + /// 用户发生的交易行为的交易号,或者用户在小程序产生表单提交的表单号,或者在IOT刷脸后得到的ftoken等,用于信息发送的校验 /// [XmlElement("form_id")] public string FormId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs index 76f2e2704..d095b8a69 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionAuditSubmitModel.cs @@ -77,7 +77,7 @@ public class AlipayOpenMiniInnerversionAuditSubmitModel : AopObject public string Memo { get; set; } /// - /// 需要提交审核的小程序appId,面向一方场景,其他场景误用 + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs index 85bac53b2..ff60ccfe0 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionBuildauditSubmitModel.cs @@ -82,7 +82,7 @@ public class AlipayOpenMiniInnerversionBuildauditSubmitModel : AopObject public AuditLicenseInfo LicenseInfo { get; set; } /// - /// 小程序ID + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs index 7045f32df..0326b26ea 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionInstantiationQueryModel.cs @@ -28,7 +28,7 @@ public class AlipayOpenMiniInnerversionInstantiationQueryModel : AopObject public string BundleId { get; set; } /// - /// 小程序appId,仅支持普通小程序、门店小程序 + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs index d30647bec..939b85f30 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionPreviewUploadModel.cs @@ -70,5 +70,12 @@ public class AlipayOpenMiniInnerversionPreviewUploadModel : AopObject /// [XmlElement("scene")] public string Scene { get; set; } + + /// + /// 分包信息 + /// + [XmlArray("sub_packages")] + [XmlArrayItem("sub_package")] + public List SubPackages { get; set; } } } diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs index 03f45e61c..45649982e 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatebasedUploadModel.cs @@ -21,6 +21,12 @@ public class AlipayOpenMiniInnerversionTemplatebasedUploadModel : AopObject [XmlElement("build_extra_info")] public string BuildExtraInfo { get; set; } + /// + /// 构建方式TEMPLATE_CONFIG_PKG:模板配置化;TEMPLATE_EXTEND:模板继承 + /// + [XmlElement("build_type")] + public string BuildType { get; set; } + /// /// 淘宝:com.taobao.app /// diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs index 8a84b75ef..5725fa377 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionTemplatedUploadModel.cs @@ -34,7 +34,7 @@ public class AlipayOpenMiniInnerversionTemplatedUploadModel : AopObject public string Ext { get; set; } /// - /// 需要构建的小程序appId + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs index f25eed695..a4830928f 100644 --- a/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs +++ b/AlipaySDKNet/Domain/AlipayOpenMiniInnerversionUpgradeModel.cs @@ -22,7 +22,7 @@ public class AlipayOpenMiniInnerversionUpgradeModel : AopObject public string BundleId { get; set; } /// - /// 需要升级的实例小程序appId,仅用于一方链路,其他无用 + /// 小程序ID,特殊场景专用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } diff --git a/AlipaySDKNet/Domain/AlipayOrderDataOpenapiResultInfo.cs b/AlipaySDKNet/Domain/AlipayOrderDataOpenapiResultInfo.cs index 4c2c62520..19cc755e6 100644 --- a/AlipaySDKNet/Domain/AlipayOrderDataOpenapiResultInfo.cs +++ b/AlipaySDKNet/Domain/AlipayOrderDataOpenapiResultInfo.cs @@ -67,12 +67,24 @@ public class AlipayOrderDataOpenapiResultInfo : AopObject [XmlArrayItem("order_logistics_information")] public List LogisticsInfoList { get; set; } + /// + /// 商户订单业务类型 + /// + [XmlElement("merchant_biz_type")] + public string MerchantBizType { get; set; } + /// /// 商户订单链接地址 /// [XmlElement("merchant_order_link_page")] public string MerchantOrderLinkPage { get; set; } + /// + /// 外部订单号 out_biz_no唯一对应一笔订单 + /// + [XmlElement("merchant_order_no")] + public string MerchantOrderNo { get; set; } + /// /// 商户的uid,即所需查询订单的partnerId /// @@ -97,6 +109,12 @@ public class AlipayOrderDataOpenapiResultInfo : AopObject [XmlElement("order_status")] public string OrderStatus { get; set; } + /// + /// 订单类型,SERVICE_ORDER:服务订单 -TRADE_ORDER:交易订单 + /// + [XmlElement("order_type")] + public string OrderType { get; set; } + /// /// 商户前置额外费用 /// @@ -115,6 +133,18 @@ public class AlipayOrderDataOpenapiResultInfo : AopObject [XmlElement("real_pay_amount")] public string RealPayAmount { get; set; } + /// + /// 门店信息 + /// + [XmlElement("shop_info")] + public OrderShopInfoResult ShopInfo { get; set; } + + /// + /// 凭证信息 + /// + [XmlElement("ticket_info")] + public TicketInfoResult TicketInfo { get; set; } + /// /// 小程序appid /// diff --git a/AlipaySDKNet/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs b/AlipaySDKNet/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs index 4cb061dc4..4a2c43b2d 100644 --- a/AlipaySDKNet/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayOverseasRemitBeneficialinfoQueryModel.cs @@ -64,7 +64,7 @@ public class AlipayOverseasRemitBeneficialinfoQueryModel : AopObject public string SendAmount { get; set; } /// - /// 汇款人国家 + /// 汇款人国家,与sender_nationality不能同时为空 /// [XmlElement("send_country")] public string SendCountry { get; set; } @@ -86,5 +86,11 @@ public class AlipayOverseasRemitBeneficialinfoQueryModel : AopObject /// [XmlElement("sender_name")] public string SenderName { get; set; } + + /// + /// 汇款人国籍,与send_country不能同时为空 + /// + [XmlElement("sender_nationality")] + public string SenderNationality { get; set; } } } diff --git a/AlipaySDKNet/Domain/AlipayPayCodecApplepayCredentialsGetModel.cs b/AlipaySDKNet/Domain/AlipayPayCodecApplepayCredentialsGetModel.cs new file mode 100644 index 000000000..a4ad03233 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayPayCodecApplepayCredentialsGetModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecApplepayCredentialsGetModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecApplepayCredentialsGetModel : AopObject + { + /// + /// ECC算法、PKCS#7的签名。{Base 64 encoded signature from Apple authorizing the return of the credentials. PKCS#7 detached ECC signature covering the SHA 256 hash of the concatenation of the UTF-8 values of provisioningBundleIdentifier , lastUsedCredentialIdentifier , numberToFetch and hasZeroQRCodes .} + /// + [XmlElement("apple_signature")] + public string AppleSignature { get; set; } + + /// + /// 加密证书hash值,用于证书验证。 The public key hash of the leaf certificate of the barcodeEncryptionCertChain to indicate the public key that should be used for the encryption of payment credentials. + /// + [XmlElement("encryption_public_key_hash")] + public string EncryptionPublicKeyHash { get; set; } + + /// + /// 风控信息。 Fraud data provided by Apple as outlined in separate Fraud SIA document, if applicable + /// + [XmlElement("fraud_data")] + public CredentialsFraudData FraudData { get; set; } + + /// + /// hasZeroQRCodes,本地已经没有付款码。{This parameter indicates if there are anymore QR codes left on the device or not. True means that there are no more QR codes left on the device.} + /// + [XmlElement("has_zero_qr_codes")] + public bool HasZeroQrCodes { get; set; } + + /// + /// 上一个展示过的码id,-1个可做失效处理。{The identifier of the most recently consumed payment credential} + /// + [XmlElement("last_used_credential_identifier")] + public string LastUsedCredentialIdentifier { get; set; } + + /// + /// 希望下发的码个数。{The desired number of payment credentials to be returned} + /// + [XmlElement("number_to_fetch")] + public long NumberToFetch { get; set; } + + /// + /// 码类型。 {To enable QR code and barcode functionality} + /// + [XmlElement("payment_credential_type")] + public string PaymentCredentialType { get; set; } + + /// + /// SAM pass的bundleId,唯一标识一张卡片。{The identifier on the device for which the payment credentials are destined} + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayPayCodecApplepayEstablishSetModel.cs b/AlipaySDKNet/Domain/AlipayPayCodecApplepayEstablishSetModel.cs new file mode 100644 index 000000000..bf70f6779 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayPayCodecApplepayEstablishSetModel.cs @@ -0,0 +1,45 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecApplepayEstablishSetModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecApplepayEstablishSetModel : AopObject + { + /// + /// 数字签名。 The Base 64 encoded signature generated on Apple server. PKCS#7 detached ECC signature covering the SHA 256 hash of the concatenation of the UTF-8 value of provisioningBundleIdentifier and certificatesRequested and Base 64 decoded values of barcodeEncryptionCertificate , deviceSignatureCertificate . + /// + [XmlElement("apple_signature")] + public string AppleSignature { get; set; } + + /// + /// JSON格式,base64的证书链List。只有leaf证书结构,能被imediately和root证书验过。第0个证书用于二维码加密使用。 Base 64 encoded X.509 encryption certificate chain containing the intermediate and leaf certificates. Encryption shall be performed using the first certificate in the list. + /// + [XmlArray("barcode_encryption_cert_chain")] + [XmlArrayItem("string")] + public List BarcodeEncryptionCertChain { get; set; } + + /// + /// JSON格式,base64的证书链List。只有leaf证书结构,能被imediately和root证书验过。第0个证书用于二维码上报加签使用。 Base 64 encoded X.509 signature certificate chain containing the intermediate and leaf certificates. The device will sign a payload each time it displays a QR code on the screen using the private key of this key pair. The public key of the first certificate should be used to verify that signature. + /// + [XmlArray("device_signature_cert_chain")] + [XmlArrayItem("string")] + public List DeviceSignatureCertChain { get; set; } + + /// + /// 风控信息。 Fraud data provided by Apple as outlined in separate Fraud SIA document, if applicable + /// + [XmlElement("fraud_data")] + public EstablishFraudData FraudData { get; set; } + + /// + /// SAM pass的bundleId,唯一标识一张卡片。 The identifier for which the feature is being enabled. + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs b/AlipaySDKNet/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs index 65cbd626d..16fdeb8fd 100644 --- a/AlipaySDKNet/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs +++ b/AlipaySDKNet/Domain/AlipayPcreditHuabeiSpayAuthConsultModel.cs @@ -58,7 +58,7 @@ public class AlipayPcreditHuabeiSpayAuthConsultModel : AopObject public string PaymentMode { get; set; } /// - /// RECEIVE_IN_ONE_TIME:表达一次性提前收款服务 + /// RECEIVE_IN_ONE_TIME:表达一次性提前收款服务 RECEIVE_BY_PERIOD:按照周期收款 /// [XmlElement("receive_mode")] public string ReceiveMode { get; set; } diff --git a/AlipaySDKNet/Domain/AlipaySecurityProdTamGetModel.cs b/AlipaySDKNet/Domain/AlipaySecurityProdTamGetModel.cs index cf863bb9b..33348c1e7 100644 --- a/AlipaySDKNet/Domain/AlipaySecurityProdTamGetModel.cs +++ b/AlipaySDKNet/Domain/AlipaySecurityProdTamGetModel.cs @@ -21,6 +21,12 @@ public class AlipaySecurityProdTamGetModel : AopObject [XmlElement("condition")] public string Condition { get; set; } + /// + /// ext_info+不唯一+JSON形式的map,包含关于ta摘要算法等信息+枚举值:BASE64_OVER_SHA256;BASE64_OVER_SHA512;BASE64_OVER_SM3+OEM厂商获取TA时放在入参里+缺省值为BASE64_OVER_SHA256 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + /// /// sp_aik_pub(OEM厂商服务端分配给服务商的公钥)+唯一+由OEM厂商服务端生成,OEM厂商服务端在请求ta文件时会带上这个公钥,用于支付宝加密对称密钥返回给OEM厂商服务端+示例值由于输入长度限制并非真实的公钥长度 /// diff --git a/AlipaySDKNet/Domain/AlipaySocialAntforestPlantApplyModel.cs b/AlipaySDKNet/Domain/AlipaySocialAntforestPlantApplyModel.cs index 651b08898..a3c2d8a1d 100644 --- a/AlipaySDKNet/Domain/AlipaySocialAntforestPlantApplyModel.cs +++ b/AlipaySDKNet/Domain/AlipaySocialAntforestPlantApplyModel.cs @@ -22,7 +22,7 @@ public class AlipaySocialAntforestPlantApplyModel : AopObject public string ApplyType { get; set; } /// - /// 接口扩展参数,商户可透传一些信息进来,后续扩展或者透传等作用 + /// 接口扩展参数,商户可透传一些信息进来,后续扩展或者透传等作用,json字符串目前需要传以下参数{"accountName":"钉钉",//账号名称,必填 "type":"class",// 合种类型:class/corp,必填 "corp":"111", // 公司名称 "cooperation":"222" , // 合种名称,type为class时为班级名称 } /// [XmlElement("ext_info")] public string ExtInfo { get; set; } @@ -33,6 +33,12 @@ public class AlipaySocialAntforestPlantApplyModel : AopObject [XmlElement("out_biz_no")] public string OutBizNo { get; set; } + /// + /// 兑换树种时当前合种的参与人数 + /// + [XmlElement("participant")] + public long Participant { get; set; } + /// /// 项目id,需要配合其他查询接口,查询到相关的项目之后使用。不限于树种,还包括保护地等 /// diff --git a/AlipaySDKNet/Domain/AlipaySocialAntforestTreeSyncModel.cs b/AlipaySDKNet/Domain/AlipaySocialAntforestTreeSyncModel.cs new file mode 100644 index 000000000..8908ce41c --- /dev/null +++ b/AlipaySDKNet/Domain/AlipaySocialAntforestTreeSyncModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialAntforestTreeSyncModel Data Structure. + /// + [Serializable] + public class AlipaySocialAntforestTreeSyncModel : AopObject + { + /// + /// 待同步的证书的来源账户id + /// + [XmlElement("account_id")] + public string AccountId { get; set; } + + /// + /// 待同步时的证书id,有之前调用申请兑换树种成功时返回的证书id + /// + [XmlElement("certificate_id")] + public string CertificateId { get; set; } + + /// + /// JSON字符串,历史数据同步时accountName、type、participant必填,其他字段选填。其中accountName为账号名称,例如钉钉固定传“钉钉”,type为合种类型:班级或公司公益林(class/corp),cooperation为合种名称或班级名称,participant为兑换证书时合种的人数,非合种实时人数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 待同步证书的所属用户,蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipaySocialAntiepSceneSendModel.cs b/AlipaySDKNet/Domain/AlipaySocialAntiepSceneSendModel.cs new file mode 100644 index 000000000..a451b9232 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipaySocialAntiepSceneSendModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialAntiepSceneSendModel Data Structure. + /// + [Serializable] + public class AlipaySocialAntiepSceneSendModel : AopObject + { + /// + /// 行为业务参数,用于业务流处理时所需参数转换,map 的 json格式 + /// + [XmlElement("action_biz_info")] + public string ActionBizInfo { get; set; } + + /// + /// 行为幂等id,用于防止重复提交 + /// + [XmlElement("action_biz_no")] + public string ActionBizNo { get; set; } + + /// + /// 上报行为的code码,用于服务端取出对应的场景信息并处理对应的后续行为 + /// + [XmlElement("action_code")] + public string ActionCode { get; set; } + + /// + /// 行为发生的时间戳,单位是ms + /// + [XmlElement("action_time")] + public long ActionTime { get; set; } + + /// + /// 请求类型,需传OPENAPI + /// + [XmlElement("request_type")] + public string RequestType { get; set; } + + /// + /// 场景类型,新增需找开发者协定值 + /// + [XmlElement("scene_code")] + public string SceneCode { get; set; } + + /// + /// 请求来源 + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceAddModel.cs b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceAddModel.cs new file mode 100644 index 000000000..740f85a51 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceAddModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceAddModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceAddModel : AopObject + { + /// + /// 目标ID + /// + [XmlElement("quest_id")] + public string QuestId { get; set; } + + /// + /// 每日打卡提醒时间范围,小目标提醒时间会在这个范围随机设定,时间格式HH-MM,开始时间和结束时间-分割。 + /// + [XmlElement("remind_time_range")] + public string RemindTimeRange { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceModifyModel.cs b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceModifyModel.cs new file mode 100644 index 000000000..6459dca2d --- /dev/null +++ b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceModifyModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceModifyModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceModifyModel : AopObject + { + /// + /// 小目标唯一ID + /// + [XmlElement("quest_id")] + public string QuestId { get; set; } + + /// + /// 每日打卡提醒时间范围,小目标提醒时间会在这个范围随机设定,时间格式HH-MM,开始时间和结束时间-分割。 传空表示取消提醒设置 + /// + [XmlElement("remind_time_range")] + public string RemindTimeRange { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 修改类型: 1 表示修改小目标提醒时间 + /// + [XmlElement("type")] + public long Type { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceQueryModel.cs b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceQueryModel.cs new file mode 100644 index 000000000..b117bd382 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceQueryModel.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceQueryModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceQueryModel : AopObject + { + /// + /// 目标ID列表,列表长度不能超过20 + /// + [XmlArray("quest_ids")] + [XmlArrayItem("string")] + public List QuestIds { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceSubmitModel.cs b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceSubmitModel.cs new file mode 100644 index 000000000..77416f0d5 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipaySocialBaseQuestInstanceSubmitModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipaySocialBaseQuestInstanceSubmitModel Data Structure. + /// + [Serializable] + public class AlipaySocialBaseQuestInstanceSubmitModel : AopObject + { + /// + /// 小目标实例ID + /// + [XmlElement("instance_id")] + public string InstanceId { get; set; } + + /// + /// 调用方标识 + /// + [XmlElement("source_id")] + public string SourceId { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayTradeFastpayRefundQueryModel.cs b/AlipaySDKNet/Domain/AlipayTradeFastpayRefundQueryModel.cs index 4f75562b0..eb0f04a1e 100644 --- a/AlipaySDKNet/Domain/AlipayTradeFastpayRefundQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayTradeFastpayRefundQueryModel.cs @@ -1,5 +1,6 @@ using System; using System.Xml.Serialization; +using System.Collections.Generic; namespace Aop.Api.Domain { @@ -27,6 +28,13 @@ public class AlipayTradeFastpayRefundQueryModel : AopObject [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } + /// + /// 查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["refund_detail_item_list"] + /// + [XmlArray("query_options")] + [XmlArrayItem("string")] + public List QueryOptions { get; set; } + /// /// 支付宝交易号,和商户订单号不能同时为空 /// diff --git a/AlipaySDKNet/Domain/AlipayTradePayModel.cs b/AlipaySDKNet/Domain/AlipayTradePayModel.cs index e83a912bc..680ed39eb 100644 --- a/AlipaySDKNet/Domain/AlipayTradePayModel.cs +++ b/AlipaySDKNet/Domain/AlipayTradePayModel.cs @@ -131,6 +131,13 @@ public class AlipayTradePayModel : AopObject [XmlElement("promo_params")] public PromoParam PromoParams { get; set; } + /// + /// 返回查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["fund_bill_list","voucher_detail_list","discount_goods_detail"] + /// + [XmlArray("query_options")] + [XmlArrayItem("string")] + public List QueryOptions { get; set; } + /// /// 描述分账信息,json格式,其它说明详见分账说明 /// diff --git a/AlipaySDKNet/Domain/AlipayTradeQueryModel.cs b/AlipaySDKNet/Domain/AlipayTradeQueryModel.cs index 78033d745..4ffe71d77 100644 --- a/AlipaySDKNet/Domain/AlipayTradeQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayTradeQueryModel.cs @@ -23,7 +23,7 @@ public class AlipayTradeQueryModel : AopObject public string OutTradeNo { get; set; } /// - /// 查询选项,商户通过上送该字段来定制查询返回信息 + /// 查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["trade_settle_info","fund_bill_list","voucher_detail_list","discount_goods_detail"] /// [XmlArray("query_options")] [XmlArrayItem("string")] diff --git a/AlipaySDKNet/Domain/AlipayTradeRefundModel.cs b/AlipaySDKNet/Domain/AlipayTradeRefundModel.cs index 65751074c..2eaed1516 100644 --- a/AlipaySDKNet/Domain/AlipayTradeRefundModel.cs +++ b/AlipaySDKNet/Domain/AlipayTradeRefundModel.cs @@ -41,6 +41,13 @@ public class AlipayTradeRefundModel : AopObject [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } + /// + /// 查询选项,商户通过上送该参数来定制同步需要额外返回的信息字段,数组格式。如:["refund_detail_item_list"] + /// + [XmlArray("query_options")] + [XmlArrayItem("string")] + public List QueryOptions { get; set; } + /// /// 需要退款的金额,该金额不能大于订单金额,单位为元,支持两位小数 /// diff --git a/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleCreateModel.cs b/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleCreateModel.cs new file mode 100644 index 000000000..ab77128b2 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleCreateModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayProvisioningbundleCreateModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayProvisioningbundleCreateModel : AopObject + { + /// + /// 支付宝用户id + /// + [XmlElement("alipay_user_identifier")] + public string AlipayUserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleEffectModel.cs b/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleEffectModel.cs new file mode 100644 index 000000000..789dab2a7 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleEffectModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayProvisioningbundleEffectModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayProvisioningbundleEffectModel : AopObject + { + /// + /// 事件类型 + /// + [XmlElement("event_type")] + public string EventType { get; set; } + + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 卡的用户id(由固定前缀+支付宝用户id组成) + /// + [XmlElement("reference_identifier")] + public string ReferenceIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleQueryModel.cs b/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleQueryModel.cs new file mode 100644 index 000000000..7e347c1bd --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserApplepayProvisioningbundleQueryModel.cs @@ -0,0 +1,63 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayProvisioningbundleQueryModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayProvisioningbundleQueryModel : AopObject + { + /// + /// 加密证书链 + /// + [XmlArray("encryption_cert_chain")] + [XmlArrayItem("string")] + public List EncryptionCertChain { get; set; } + + /// + /// 加密版本号 + /// + [XmlElement("encryption_version")] + public string EncryptionVersion { get; set; } + + /// + /// 风控数据 + /// + [XmlElement("fraud_data")] + public FraudData FraudData { get; set; } + + /// + /// 地区 + /// + [XmlElement("locale")] + public string Locale { get; set; } + + /// + /// 隐私数据加密证书链 + /// + [XmlArray("private_encryption_cert_chain")] + [XmlArrayItem("string")] + public List PrivateEncryptionCertChain { get; set; } + + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 卡的用户id(由固定前缀+支付宝用户id组成) + /// + [XmlElement("reference_identifier")] + public string ReferenceIdentifier { get; set; } + + /// + /// 卡的x-pod + /// + [XmlElement("x_pod")] + public string XPod { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs b/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs index dd308d69f..13421c84d 100644 --- a/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyInfoQueryModel.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Domain [Serializable] public class AlipayUserCertifyIdentifyInfoQueryModel : AopObject { + /// + /// havana_id + /// + [XmlElement("havana_id")] + public string HavanaId { get; set; } + /// /// 登录ID /// diff --git a/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyVerifyModel.cs b/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyVerifyModel.cs index 70f9ebe24..807f71572 100644 --- a/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyVerifyModel.cs +++ b/AlipaySDKNet/Domain/AlipayUserCertifyIdentifyVerifyModel.cs @@ -15,6 +15,18 @@ public class AlipayUserCertifyIdentifyVerifyModel : AopObject [XmlElement("biz_code")] public string BizCode { get; set; } + /// + /// havana_id + /// + [XmlElement("havana_id")] + public string HavanaId { get; set; } + + /// + /// 登录ID + /// + [XmlElement("logon_id")] + public string LogonId { get; set; } + /// /// 蚂蚁统一会员ID /// diff --git a/AlipaySDKNet/Domain/AlipayUserMpointAuthbasePayModel.cs b/AlipaySDKNet/Domain/AlipayUserMpointAuthbasePayModel.cs new file mode 100644 index 000000000..09ef03682 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserMpointAuthbasePayModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointAuthbasePayModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointAuthbasePayModel : AopObject + { + /// + /// 业务子类型,由会员方面分配 + /// + [XmlElement("biz_sub_type")] + public string BizSubType { get; set; } + + /// + /// 业务类型,由会员方面分配 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 目标扣减积分数 + /// + [XmlElement("point")] + public string Point { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayUserMpointAuthbaseQueryModel.cs b/AlipaySDKNet/Domain/AlipayUserMpointAuthbaseQueryModel.cs new file mode 100644 index 000000000..5e2f6454b --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserMpointAuthbaseQueryModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointAuthbaseQueryModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointAuthbaseQueryModel : AopObject + { + /// + /// 用户的支付宝账户ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayUserMpointPayModel.cs b/AlipaySDKNet/Domain/AlipayUserMpointPayModel.cs new file mode 100644 index 000000000..fa3c6a4bc --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserMpointPayModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointPayModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointPayModel : AopObject + { + /// + /// 业务子类型,由会员方面分配 + /// + [XmlElement("biz_sub_type")] + public string BizSubType { get; set; } + + /// + /// 业务类型,由会员方面分配 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 业务流水号,会用于幂等性校验,所以请保证每次请求的业务流水号的唯一性 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 需要扣减的积分数 + /// + [XmlElement("point")] + public string Point { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayUserMpointRefundModel.cs b/AlipaySDKNet/Domain/AlipayUserMpointRefundModel.cs new file mode 100644 index 000000000..20581123e --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserMpointRefundModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserMpointRefundModel Data Structure. + /// + [Serializable] + public class AlipayUserMpointRefundModel : AopObject + { + /// + /// 业务子类型,由会员方面分配 + /// + [XmlElement("biz_sub_type")] + public string BizSubType { get; set; } + + /// + /// 业务类型,由会员方面分配 + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 业务流水号,用来映射需要回退积分的订单号,与调用扣减积分接口时传入的值一致。 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 蚂蚁统一会员ID + /// + [XmlElement("user_id")] + public string UserId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftConsultModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftConsultModel.cs index fa94d7e0b..6ffaa15e9 100644 --- a/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftConsultModel.cs +++ b/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftConsultModel.cs @@ -184,7 +184,7 @@ public class AntMerchantExpandIndirectZftConsultModel : AopObject public string SignTimeWithIsv { get; set; } /// - /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象 + /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象,site_type/site_url/site_name必填;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象,site_type/site_name必填 /// [XmlArray("sites")] [XmlArrayItem("site_info")] diff --git a/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftCreateModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftCreateModel.cs index cb5c8f45c..c4dd0d579 100644 --- a/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftCreateModel.cs +++ b/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftCreateModel.cs @@ -184,7 +184,7 @@ public class AntMerchantExpandIndirectZftCreateModel : AopObject public string SignTimeWithIsv { get; set; } /// - /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象 + /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象,site_type/site_url/site_name必填;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象,site_type/site_name必填 /// [XmlArray("sites")] [XmlArrayItem("site_info")] diff --git a/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftModifyModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftModifyModel.cs index 4fedaae4c..7da3a6cb5 100644 --- a/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftModifyModel.cs +++ b/AlipaySDKNet/Domain/AntMerchantExpandIndirectZftModifyModel.cs @@ -160,7 +160,7 @@ public class AntMerchantExpandIndirectZftModifyModel : AopObject public string SignTimeWithIsv { get; set; } /// - /// 商户站点信息,包括网站、app、小程序。 商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象; 当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象 + /// 商户站点信息,包括网站、app、小程序。商户使用服务包含电脑支付或wap支付时,必须填充一个类型为01(网站)的SiteInfo对象,site_type/site_url/site_name必填;当包含app支付时,必须至少填充类型为02(APP)或06(支付宝小程序)中一种类型的SiteInfo对象,site_type/site_name必填 /// [XmlArray("sites")] [XmlArrayItem("site_info")] diff --git a/AlipaySDKNet/Domain/AntMerchantExpandShopBatchqueryModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandShopBatchqueryModel.cs new file mode 100644 index 000000000..223031046 --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantExpandShopBatchqueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandShopBatchqueryModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandShopBatchqueryModel : AopObject + { + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 插件业务场景code,预约为SHOP_SERVICE + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线上店ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceCreateModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceCreateModel.cs new file mode 100644 index 000000000..ab0524ba4 --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceCreateModel.cs @@ -0,0 +1,75 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandStoreShopserviceCreateModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandStoreShopserviceCreateModel : AopObject + { + /// + /// 素材上传的安全云oss的accessKey + /// + [XmlElement("access_key_id")] + public string AccessKeyId { get; set; } + + /// + /// 场景服务名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 商家接收通知的手机号 + /// + [XmlElement("notify_phone")] + public string NotifyPhone { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 具体描述预约的业务场景 + /// + [XmlElement("service_desc")] + public string ServiceDesc { get; set; } + + /// + /// 线下门店的服务项目列表 + /// + [XmlArray("service_items")] + [XmlArrayItem("shop_service_item")] + public List ServiceItems { get; set; } + + /// + /// 服务时间信息 + /// + [XmlElement("service_time")] + public ServiceTimeInfo ServiceTime { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 服务人员 + /// + [XmlArray("shop_staffs")] + [XmlArrayItem("shop_staff_info")] + public List ShopStaffs { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceDeleteModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceDeleteModel.cs new file mode 100644 index 000000000..420ebaeaf --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceDeleteModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandStoreShopserviceDeleteModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandStoreShopserviceDeleteModel : AopObject + { + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 线下店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 场景服务ID + /// + [XmlElement("shop_service_id")] + public string ShopServiceId { get; set; } + + /// + /// SKU的ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + + /// + /// 线上门店ID,插件协议的入参 + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceModifyModel.cs b/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceModifyModel.cs new file mode 100644 index 000000000..76d3be79a --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantExpandStoreShopserviceModifyModel.cs @@ -0,0 +1,81 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantExpandStoreShopserviceModifyModel Data Structure. + /// + [Serializable] + public class AntMerchantExpandStoreShopserviceModifyModel : AopObject + { + /// + /// 测试的场景服务名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 商家接收通知的手机号 + /// + [XmlElement("notify_phone")] + public string NotifyPhone { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 具体描述预约的业务场景 + /// + [XmlElement("service_desc")] + public string ServiceDesc { get; set; } + + /// + /// 线下门店的服务项目列表 + /// + [XmlArray("service_items")] + [XmlArrayItem("shop_service_item")] + public List ServiceItems { get; set; } + + /// + /// 服务时间信息 + /// + [XmlElement("service_time")] + public ServiceTimeInfo ServiceTime { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 场景服务ID + /// + [XmlElement("shop_service_id")] + public string ShopServiceId { get; set; } + + /// + /// 服务人员 + /// + [XmlArray("shop_staffs")] + [XmlArrayItem("shop_staff_info")] + public List ShopStaffs { get; set; } + + /// + /// 规格ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantOrderStoreBatchqueryModel.cs b/AlipaySDKNet/Domain/AntMerchantOrderStoreBatchqueryModel.cs new file mode 100644 index 000000000..1fb86d344 --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantOrderStoreBatchqueryModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreBatchqueryModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreBatchqueryModel : AopObject + { + /// + /// 结束时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 订单状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 开始时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantOrderStoreCreateModel.cs b/AlipaySDKNet/Domain/AntMerchantOrderStoreCreateModel.cs new file mode 100644 index 000000000..f083dbab0 --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantOrderStoreCreateModel.cs @@ -0,0 +1,87 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreCreateModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreCreateModel : AopObject + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 联系电话 + /// + [XmlElement("contact_phone")] + public string ContactPhone { get; set; } + + /// + /// 扩展参数: Ext_ArrivedTime : 到店时间 + /// + [XmlArray("ext")] + [XmlArrayItem("order_ext")] + public List Ext { get; set; } + + /// + /// 订单相关的商品信息 + /// + [XmlArray("goods_info_list")] + [XmlArrayItem("store_order_good")] + public List GoodsInfoList { get; set; } + + /// + /// 订单超时时间,默认60分钟 + /// + [XmlElement("invalid_time")] + public long InvalidTime { get; set; } + + /// + /// 订单的描述 + /// + [XmlElement("memo")] + public string Memo { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 卖家id + /// + [XmlElement("seller_id")] + public string SellerId { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + + /// + /// 姓名 + /// + [XmlElement("user_name")] + public string UserName { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantOrderStoreQueryModel.cs b/AlipaySDKNet/Domain/AntMerchantOrderStoreQueryModel.cs new file mode 100644 index 000000000..e351b818c --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantOrderStoreQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreQueryModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreQueryModel : AopObject + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntMerchantOrderStoreSyncModel.cs b/AlipaySDKNet/Domain/AntMerchantOrderStoreSyncModel.cs new file mode 100644 index 000000000..1b082f10b --- /dev/null +++ b/AlipaySDKNet/Domain/AntMerchantOrderStoreSyncModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AntMerchantOrderStoreSyncModel Data Structure. + /// + [Serializable] + public class AntMerchantOrderStoreSyncModel : AopObject + { + /// + /// 状态相关的描述 + /// + [XmlElement("description")] + public string Description { get; set; } + + /// + /// 状态类型 + /// + [XmlElement("event_type")] + public string EventType { get; set; } + + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 插件业务场景code,预约为ShopService + /// + [XmlElement("scene")] + public string Scene { get; set; } + + /// + /// 线上店的ID + /// + [XmlElement("store_open_id")] + public string StoreOpenId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntfortuneQuotationResearchdataQueryModel.cs b/AlipaySDKNet/Domain/AntfortuneQuotationResearchdataQueryModel.cs new file mode 100644 index 000000000..b59e93742 --- /dev/null +++ b/AlipaySDKNet/Domain/AntfortuneQuotationResearchdataQueryModel.cs @@ -0,0 +1,63 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AntfortuneQuotationResearchdataQueryModel Data Structure. + /// + [Serializable] + public class AntfortuneQuotationResearchdataQueryModel : AopObject + { + /// + /// 需要获取数据的结束时间 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 预留的扩展字段,json格式。 + /// + [XmlElement("ext")] + public string Ext { get; set; } + + /// + /// 字段名称,需要访问的表中哪些字段。比如open代表开盘价 + /// + [XmlArray("fields")] + [XmlArrayItem("string")] + public List Fields { get; set; } + + /// + /// 选择性参数,用于附带一些查询条件。 + /// + [XmlElement("opt")] + public string Opt { get; set; } + + /// + /// 请求唯一id,用于排查问题 + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 需要获取数据的开始时间 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 对象唯一标识代码,比如股票就是600000.SH,基金就是003003 + /// + [XmlArray("symbols")] + [XmlArrayItem("string")] + public List Symbols { get; set; } + + /// + /// 表明需要访问的金融信息数据哪张表 + /// + [XmlElement("table")] + public string Table { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AnttechAiCvOcrBusinesslicenseIdentifyModel.cs b/AlipaySDKNet/Domain/AnttechAiCvOcrBusinesslicenseIdentifyModel.cs new file mode 100644 index 000000000..6219babaa --- /dev/null +++ b/AlipaySDKNet/Domain/AnttechAiCvOcrBusinesslicenseIdentifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechAiCvOcrBusinesslicenseIdentifyModel Data Structure. + /// + [Serializable] + public class AnttechAiCvOcrBusinesslicenseIdentifyModel : AopObject + { + /// + /// 文件二进制内容 + base64 + /// + [XmlElement("image_raw")] + public string ImageRaw { get; set; } + + /// + /// 图片下载url + /// + [XmlElement("image_url")] + public string ImageUrl { get; set; } + + /// + /// 服务调用来源(需要咨询服务提供方) + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 单次调用唯一标示,用于异常问题排查,调用方需要负责生成并且记录在调用日志里 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AnttechAiCvOcrVatinvoiceIdentifyModel.cs b/AlipaySDKNet/Domain/AnttechAiCvOcrVatinvoiceIdentifyModel.cs new file mode 100644 index 000000000..b7a559995 --- /dev/null +++ b/AlipaySDKNet/Domain/AnttechAiCvOcrVatinvoiceIdentifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechAiCvOcrVatinvoiceIdentifyModel Data Structure. + /// + [Serializable] + public class AnttechAiCvOcrVatinvoiceIdentifyModel : AopObject + { + /// + /// 文件二进制内容 + base64 + /// + [XmlElement("image_raw")] + public string ImageRaw { get; set; } + + /// + /// 图片下载url + /// + [XmlElement("image_url")] + public string ImageUrl { get; set; } + + /// + /// 服务调用来源(需要咨询服务提供方) + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 单次调用唯一标示,用于异常问题排查,调用方需要负责生成并且记录在调用日志里 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel.cs b/AlipaySDKNet/Domain/AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel.cs new file mode 100644 index 000000000..95a839926 --- /dev/null +++ b/AlipaySDKNet/Domain/AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel Data Structure. + /// + [Serializable] + public class AnttechBlockchainFinanceMylogisticfinsysMessagePublishModel : AopObject + { + /// + /// 路由方法的参数 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 方法路由 + /// + [XmlElement("method_name")] + public string MethodName { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AssetReverseDetail.cs b/AlipaySDKNet/Domain/AssetReverseDetail.cs index 695542e92..a51a49631 100644 --- a/AlipaySDKNet/Domain/AssetReverseDetail.cs +++ b/AlipaySDKNet/Domain/AssetReverseDetail.cs @@ -32,5 +32,11 @@ public class AssetReverseDetail : AopObject /// [XmlElement("goods_status")] public string GoodsStatus { get; set; } + + /// + /// 地址是否修改成功标志;取消/退货 不填 地址修改 必填 + /// + [XmlElement("success")] + public bool Success { get; set; } } } diff --git a/AlipaySDKNet/Domain/AttachmentExplain.cs b/AlipaySDKNet/Domain/AttachmentExplain.cs index 3f7ed2e7b..b79ed4309 100644 --- a/AlipaySDKNet/Domain/AttachmentExplain.cs +++ b/AlipaySDKNet/Domain/AttachmentExplain.cs @@ -11,7 +11,7 @@ namespace Aop.Api.Domain public class AttachmentExplain : AopObject { /// - /// 是否允许上传更多附件 (collect_attachement值为true时必填) + /// 允许上传更多附件。开启后,除了“附件列表”中指定的内容,签署人可自由上传之多10张图片。默认值为false /// [XmlElement("allow_more_uploads")] public bool AllowMoreUploads { get; set; } diff --git a/AlipaySDKNet/Domain/BccEventDetail.cs b/AlipaySDKNet/Domain/BccEventDetail.cs new file mode 100644 index 000000000..dc3174b85 --- /dev/null +++ b/AlipaySDKNet/Domain/BccEventDetail.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BccEventDetail Data Structure. + /// + [Serializable] + public class BccEventDetail : AopObject + { + /// + /// 活动id + /// + [XmlElement("activity_id")] + public string ActivityId { get; set; } + + /// + /// 事件结果标识:true/false + /// + [XmlElement("complete_tag")] + public bool CompleteTag { get; set; } + + /// + /// 合约单号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 事件内容 + /// + [XmlElement("event_conent")] + public string EventConent { get; set; } + + /// + /// 事件发生日期,如打卡日期 + /// + [XmlElement("event_day")] + public string EventDay { get; set; } + + /// + /// 事件类型:用来记录事件类型,如钉钉打卡 + /// + [XmlElement("event_type")] + public string EventType { get; set; } + + /// + /// 记录系统创建时间 + /// + [XmlElement("gm_create")] + public string GmCreate { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 芝麻roleId + /// + [XmlElement("zm_role_id")] + public string ZmRoleId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/BccSubjectDetail.cs b/AlipaySDKNet/Domain/BccSubjectDetail.cs new file mode 100644 index 000000000..99de25518 --- /dev/null +++ b/AlipaySDKNet/Domain/BccSubjectDetail.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BccSubjectDetail Data Structure. + /// + [Serializable] + public class BccSubjectDetail : AopObject + { + /// + /// 标的完成值 + /// + [XmlElement("completions")] + public string Completions { get; set; } + + /// + /// 当前值 + /// + [XmlElement("current_value")] + public string CurrentValue { get; set; } + + /// + /// 该标的对应的事项 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 标的id + /// + [XmlElement("subject_id")] + public string SubjectId { get; set; } + + /// + /// 标的类型 + /// + [XmlElement("subject_type")] + public string SubjectType { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/CallCenterTradeApplyParams.cs b/AlipaySDKNet/Domain/CallCenterTradeApplyParams.cs new file mode 100644 index 000000000..cb5bea4aa --- /dev/null +++ b/AlipaySDKNet/Domain/CallCenterTradeApplyParams.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CallCenterTradeApplyParams Data Structure. + /// + [Serializable] + public class CallCenterTradeApplyParams : AopObject + { + /// + /// 系统商编号,该参数作为系统商返佣数据提取的依据,请填写系统商签约协议的PID + /// + [XmlElement("broker_id")] + public string BrokerId { get; set; } + + /// + /// 买家姓名 + /// + [XmlElement("buyer_name")] + public string BuyerName { get; set; } + + /// + /// 货币符号 + /// + [XmlElement("currency")] + public string Currency { get; set; } + + /// + /// 设置未付款支付宝订单的超时时间,一旦超时,该笔订单就会自动失效。当商户调用接口时开始计时。取值精确至秒,格式为yyyy-MM-dd HH:mm:ss。 + /// + [XmlElement("expire_time")] + public string ExpireTime { get; set; } + + /// + /// 第三方唯一序列号, 64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复 + /// + [XmlElement("out_trade_no")] + public string OutTradeNo { get; set; } + + /// + /// 优惠参数,用于传递营销信息。传递参数时,请所在行业的业务人员确认。 + /// + [XmlElement("promo_params")] + public string PromoParams { get; set; } + + /// + /// 交易标题/订单标题 + /// + [XmlElement("subject")] + public string Subject { get; set; } + + /// + /// 订单总金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000] + /// + [XmlElement("total_amount")] + public string TotalAmount { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/CardInstanceDO.cs b/AlipaySDKNet/Domain/CardInstanceDO.cs new file mode 100644 index 000000000..c8e7711f6 --- /dev/null +++ b/AlipaySDKNet/Domain/CardInstanceDO.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CardInstanceDO Data Structure. + /// + [Serializable] + public class CardInstanceDO : AopObject + { + /// + /// 小目标卡片Id + /// + [XmlElement("card_id")] + public string CardId { get; set; } + + /// + /// 用户获得卡片的当前星级 + /// + [XmlElement("level")] + public long Level { get; set; } + + /// + /// 卡片最大星级 + /// + [XmlElement("max_level")] + public long MaxLevel { get; set; } + + /// + /// 小目标卡片名称 + /// + [XmlElement("name")] + public string Name { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/CardPromoDO.cs b/AlipaySDKNet/Domain/CardPromoDO.cs new file mode 100644 index 000000000..26cb95bad --- /dev/null +++ b/AlipaySDKNet/Domain/CardPromoDO.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CardPromoDO Data Structure. + /// + [Serializable] + public class CardPromoDO : AopObject + { + /// + /// 卡片Id + /// + [XmlElement("card_id")] + public string CardId { get; set; } + + /// + /// 卡片星级 + /// + [XmlElement("card_level")] + public long CardLevel { get; set; } + + /// + /// 是否限时权益 + /// + [XmlElement("limit")] + public bool Limit { get; set; } + + /// + /// 权益图标 + /// + [XmlElement("promo_icon")] + public string PromoIcon { get; set; } + + /// + /// 权益名称 + /// + [XmlElement("promo_title")] + public string PromoTitle { get; set; } + + /// + /// 用户是否领取了该权益 + /// + [XmlElement("received")] + public bool Received { get; set; } + + /// + /// 目标打卡次数,打卡target_mark_count天可以获取该权益 + /// + [XmlElement("target_mark_count")] + public long TargetMarkCount { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/CloudbusCommonResult.cs b/AlipaySDKNet/Domain/CloudbusCommonResult.cs new file mode 100644 index 000000000..fda5a6e61 --- /dev/null +++ b/AlipaySDKNet/Domain/CloudbusCommonResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CloudbusCommonResult Data Structure. + /// + [Serializable] + public class CloudbusCommonResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 数据字符 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ConfigInfo.cs b/AlipaySDKNet/Domain/ConfigInfo.cs index f212b2e70..4fb661fca 100644 --- a/AlipaySDKNet/Domain/ConfigInfo.cs +++ b/AlipaySDKNet/Domain/ConfigInfo.cs @@ -47,6 +47,12 @@ public class ConfigInfo : AopObject [XmlElement("jump_url")] public string JumpUrl { get; set; } + /// + /// 商户小程序签署地址(signModel字段值为1时 必填) + /// + [XmlElement("merchant_mini_sign_url")] + public string MerchantMiniSignUrl { get; set; } + /// /// 回调地址,签署的过程和签署完成都会回调。 /// @@ -64,5 +70,11 @@ public class ConfigInfo : AopObject /// [XmlElement("serial_no")] public string SerialNo { get; set; } + + /// + /// 签署方式 0-e签宝小程序签署 1-商户小程序签署 默认0 + /// + [XmlElement("sign_model")] + public long SignModel { get; set; } } } diff --git a/AlipaySDKNet/Domain/ConversionDataDetail.cs b/AlipaySDKNet/Domain/ConversionDataDetail.cs new file mode 100644 index 000000000..683c88a25 --- /dev/null +++ b/AlipaySDKNet/Domain/ConversionDataDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ConversionDataDetail Data Structure. + /// + [Serializable] + public class ConversionDataDetail : AopObject + { + /// + /// 转化事件id + /// + [XmlElement("conversion_id")] + public string ConversionId { get; set; } + + /// + /// 转化事件结果 + /// + [XmlElement("conversion_result")] + public string ConversionResult { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/CreativeDetail.cs b/AlipaySDKNet/Domain/CreativeDetail.cs index 82e9935b9..192d01e77 100644 --- a/AlipaySDKNet/Domain/CreativeDetail.cs +++ b/AlipaySDKNet/Domain/CreativeDetail.cs @@ -16,12 +16,30 @@ public class CreativeDetail : AopObject [XmlElement("action_type")] public string ActionType { get; set; } + /// + /// 创意最新审核工单号 + /// + [XmlElement("audit_order_id")] + public string AuditOrderId { get; set; } + /// /// 创意分组标识,多个创意可按业务逻辑标识为一个分组 /// [XmlElement("batch_tag")] public string BatchTag { get; set; } + /// + /// 创意点击量 + /// + [XmlElement("click")] + public long Click { get; set; } + + /// + /// 创意消费数据,单元:分 + /// + [XmlElement("cost")] + public long Cost { get; set; } + /// /// 广告投放平台生成的创意ID /// @@ -60,6 +78,12 @@ public class CreativeDetail : AopObject [XmlArrayItem("material_detail")] public List ImgList { get; set; } + /// + /// 创意展现量 + /// + [XmlElement("impression")] + public long Impression { get; set; } + /// /// 门店LBS信息,目前仅口碑使用,格式为:经度:纬度:半径(单位:KM,无半径限制直接设置为0) /// diff --git a/AlipaySDKNet/Domain/CredentialsFraudData.cs b/AlipaySDKNet/Domain/CredentialsFraudData.cs new file mode 100644 index 000000000..a8ad8e66c --- /dev/null +++ b/AlipaySDKNet/Domain/CredentialsFraudData.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CredentialsFraudData Data Structure. + /// + [Serializable] + public class CredentialsFraudData : AopObject + { + /// + /// Wallet所在设备的设备id映射的uuid。 + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 生物核身是否可获取。 true if device is capable of biometric authentication, otherwise false + /// + [XmlElement("is_biometric_capable")] + public string IsBiometricCapable { get; set; } + + /// + /// Wallet登录icloud账户id映射的uuid。 + /// + [XmlElement("user_identifier")] + public string UserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/CredentialsResponseHeader.cs b/AlipaySDKNet/Domain/CredentialsResponseHeader.cs new file mode 100644 index 000000000..c6e3abcc7 --- /dev/null +++ b/AlipaySDKNet/Domain/CredentialsResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// CredentialsResponseHeader Data Structure. + /// + [Serializable] + public class CredentialsResponseHeader : AopObject + { + /// + /// 200=成功,400=请求错误,403=bundle查询不到。 Status code used to indicate an error, or "200" for success. + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + + /// + /// Not parsed programmatically. Example "Downstream system offline". + /// + [XmlElement("status_message")] + public string StatusMessage { get; set; } + + /// + /// Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions. + /// + [XmlElement("sub_status_code")] + public string SubStatusCode { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/DataDetail.cs b/AlipaySDKNet/Domain/DataDetail.cs new file mode 100644 index 000000000..33be4ed6c --- /dev/null +++ b/AlipaySDKNet/Domain/DataDetail.cs @@ -0,0 +1,50 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// DataDetail Data Structure. + /// + [Serializable] + public class DataDetail : AopObject + { + /// + /// 数据汇总时间,格式:yyyyMMdd + /// + [XmlElement("biz_date")] + public string BizDate { get; set; } + + /// + /// 点击量 + /// + [XmlElement("click")] + public long Click { get; set; } + + /// + /// 投放转化数据 + /// + [XmlArray("conversion_data_list")] + [XmlArrayItem("conversion_data_detail")] + public List ConversionDataList { get; set; } + + /// + /// 消费,单元:分 + /// + [XmlElement("cost")] + public long Cost { get; set; } + + /// + /// 展现量 + /// + [XmlElement("impression")] + public long Impression { get; set; } + + /// + /// 外部平台导入广告库后,广告投放对应的外部资源ID + /// + [XmlElement("outer_id")] + public string OuterId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/DetectServiceEntity.cs b/AlipaySDKNet/Domain/DetectServiceEntity.cs index 18d9c362a..5aec0360f 100644 --- a/AlipaySDKNet/Domain/DetectServiceEntity.cs +++ b/AlipaySDKNet/Domain/DetectServiceEntity.cs @@ -11,45 +11,45 @@ namespace Aop.Api.Domain public class DetectServiceEntity : AopObject { /// - /// 业务唯一id + /// 业务唯一id,如迭代id等 /// [XmlElement("biz_uniq_id")] public string BizUniqId { get; set; } /// - /// 待检测的文本类型 + /// 该字段可选 /// [XmlElement("content")] public string Content { get; set; } /// - /// 检测类型:content_diacrisis-内容检测,load_test-网页性能检测,vulnerabilities_scan-漏洞检测,res_Consumption资源流耗检测. 当content或者pic_url_list有值时,只能选择content_diacrisis;当service有值时,可以选择全部类型。 + /// 固定为oblisk_detect_instant /// [XmlArray("detect_type_list")] [XmlArrayItem("string")] public List DetectTypeList { get; set; } /// - /// 自定义扩展信息,JSON字符串。 如果detect_type_list包含res_Consumption资源流耗检测,则该字段可以填写流耗检测相关指标信息。(avgImgSize表示页面平均图片大小指标,单位KB;pageSize表示页面大小指标,单位KB;resCheckRela表示上面两个指标逻辑关系,取值or表示或,取值and表示且) + /// 扩展信息。JSON字符串。如果是小程序,则必须传version属性。必须 /// [XmlElement("extend_info")] public string ExtendInfo { get; set; } /// - /// 图片url列表 + /// 该字段可选 /// [XmlArray("pic_url_list")] [XmlArrayItem("string")] public List PicUrlList { get; set; } /// - /// 待检测的链接,必须是有效的url + /// 服务url。必须。 1)如果是整个小程序的诊断(伙伴、云测都是此种情况),传appId|version,如.2019082366379626|2.5.33 2)如果是某个小程序页面的诊断,传该页面的具体路径: alipays://platformapi/startapp?appId=2018091261350219&page=/pages/h5pages/h5pages 3)如果是H5,传url, 如https://www.baidu.com /// [XmlElement("service")] public string Service { get; set; } /// - /// 描述service,content,pic_url_list的名称信息,方便定位问题 + /// 小程序名称,或者H5服务名称。必须。 /// [XmlElement("title")] public string Title { get; set; } diff --git a/AlipaySDKNet/Domain/EncryptedPaymentCredential.cs b/AlipaySDKNet/Domain/EncryptedPaymentCredential.cs new file mode 100644 index 000000000..3a82027b9 --- /dev/null +++ b/AlipaySDKNet/Domain/EncryptedPaymentCredential.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// EncryptedPaymentCredential Data Structure. + /// + [Serializable] + public class EncryptedPaymentCredential : AopObject + { + /// + /// 码值密文。{Base64 encrypted data} + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 加密产生的临时公钥。 {Base64 encoded ephemeral public key} + /// + [XmlElement("ephemeral_public_key")] + public string EphemeralPublicKey { get; set; } + + /// + /// 加密用的WAGU秘钥公钥Hash。 {Base64 encoded SHA-256 hash of the encoded public key used to encrypt} + /// + [XmlElement("public_key_hash")] + public string PublicKeyHash { get; set; } + + /// + /// 加密版本。{Encryption version. } {ECC椭圆曲线算法+DH交换秘钥。Elliptic Curve Cryptography Version 2} + /// + [XmlElement("version")] + public string Version { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/EstablishFraudData.cs b/AlipaySDKNet/Domain/EstablishFraudData.cs new file mode 100644 index 000000000..03c9bd271 --- /dev/null +++ b/AlipaySDKNet/Domain/EstablishFraudData.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// EstablishFraudData Data Structure. + /// + [Serializable] + public class EstablishFraudData : AopObject + { + /// + /// Wallet所在设备的设备id映射的uuid。 + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 生物核身是否可获取。 true if device is capable of biometric authentication, otherwise false + /// + [XmlElement("is_biometric_capable")] + public string IsBiometricCapable { get; set; } + + /// + /// Wallet登录icloud账户id映射的uuid。 + /// + [XmlElement("user_identifier")] + public string UserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/EstablishResponseHeader.cs b/AlipaySDKNet/Domain/EstablishResponseHeader.cs new file mode 100644 index 000000000..da3245a7b --- /dev/null +++ b/AlipaySDKNet/Domain/EstablishResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// EstablishResponseHeader Data Structure. + /// + [Serializable] + public class EstablishResponseHeader : AopObject + { + /// + /// 200=成功,400=请求错误,403=bundle查询不到。 Status code used to indicate an error, or "200" for success. + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + + /// + /// Not parsed programmatically. Example "Downstream system offline" + /// + [XmlElement("status_message")] + public string StatusMessage { get; set; } + + /// + /// Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions. + /// + [XmlElement("sub_status_code")] + public string SubStatusCode { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ExtendInfos.cs b/AlipaySDKNet/Domain/ExtendInfos.cs new file mode 100644 index 000000000..0fde098be --- /dev/null +++ b/AlipaySDKNet/Domain/ExtendInfos.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ExtendInfos Data Structure. + /// + [Serializable] + public class ExtendInfos : AopObject + { + /// + /// isv_pid + /// + [XmlElement("isv_pid")] + public string IsvPid { get; set; } + + /// + /// 场景 + /// + [XmlElement("scene")] + public string Scene { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/FinanceCreditItem.cs b/AlipaySDKNet/Domain/FinanceCreditItem.cs new file mode 100644 index 000000000..865281b95 --- /dev/null +++ b/AlipaySDKNet/Domain/FinanceCreditItem.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// FinanceCreditItem Data Structure. + /// + [Serializable] + public class FinanceCreditItem : AopObject + { + /// + /// 授信id + /// + [XmlElement("credit_id")] + public string CreditId { get; set; } + + /// + /// 版本,从1开始,0表示最新版本 + /// + [XmlElement("ver")] + public long Ver { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/FinanceReceivableInfo.cs b/AlipaySDKNet/Domain/FinanceReceivableInfo.cs index 093f40424..61dbf9d23 100644 --- a/AlipaySDKNet/Domain/FinanceReceivableInfo.cs +++ b/AlipaySDKNet/Domain/FinanceReceivableInfo.cs @@ -23,12 +23,19 @@ public class FinanceReceivableInfo : AopObject public FinanceMemberInfo CoreBusinessInfo { get; set; } /// - /// 向核心企业授信的配置id + /// 向核心企业授信的配置id(已弃用),请参考credit_idxs /// [XmlArray("credit_ids")] [XmlArrayItem("string")] public List CreditIds { get; set; } + /// + /// 授信列表 + /// + [XmlArray("credit_idxs")] + [XmlArrayItem("finance_credit_item")] + public List CreditIdxs { get; set; } + /// /// 币种 /// diff --git a/AlipaySDKNet/Domain/FraudData.cs b/AlipaySDKNet/Domain/FraudData.cs new file mode 100644 index 000000000..38b5e1547 --- /dev/null +++ b/AlipaySDKNet/Domain/FraudData.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// FraudData Data Structure. + /// + [Serializable] + public class FraudData : AopObject + { + /// + /// 设备id + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 用户id + /// + [XmlElement("user_identifier")] + public string UserIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/InputScheduleLine.cs b/AlipaySDKNet/Domain/InputScheduleLine.cs new file mode 100644 index 000000000..61ad4d2bb --- /dev/null +++ b/AlipaySDKNet/Domain/InputScheduleLine.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// InputScheduleLine Data Structure. + /// + [Serializable] + public class InputScheduleLine : AopObject + { + /// + /// 方向,参考方向枚举 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 聚合时间粒度,单位:分钟 + /// + [XmlElement("time_span")] + public long TimeSpan { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/InputScheduleTime.cs b/AlipaySDKNet/Domain/InputScheduleTime.cs new file mode 100644 index 000000000..a38e247e1 --- /dev/null +++ b/AlipaySDKNet/Domain/InputScheduleTime.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// InputScheduleTime Data Structure. + /// + [Serializable] + public class InputScheduleTime : AopObject + { + /// + /// 车容量 + /// + [XmlElement("capacity")] + public long Capacity { get; set; } + + /// + /// 方向,参考方向枚举 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 预设车次数 + /// + [XmlElement("exp_trip_cnt")] + public long ExpTripCnt { get; set; } + + /// + /// 拓展参数 + /// + [XmlElement("ext_param")] + public string ExtParam { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/InstAccountInfo.cs b/AlipaySDKNet/Domain/InstAccountInfo.cs new file mode 100644 index 000000000..f46e0556e --- /dev/null +++ b/AlipaySDKNet/Domain/InstAccountInfo.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// InstAccountInfo Data Structure. + /// + [Serializable] + public class InstAccountInfo : AopObject + { + /// + /// 机构二类户账户号 + /// + [XmlElement("account_no")] + public string AccountNo { get; set; } + + /// + /// 工单ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 账户工单状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/InvoicePDFSynModel.cs b/AlipaySDKNet/Domain/InvoicePDFSynModel.cs index c4b9099e5..1036238b6 100644 --- a/AlipaySDKNet/Domain/InvoicePDFSynModel.cs +++ b/AlipaySDKNet/Domain/InvoicePDFSynModel.cs @@ -15,6 +15,12 @@ public class InvoicePDFSynModel : AopObject [XmlElement("extend_fields")] public string ExtendFields { get; set; } + /// + /// base64化的字符串 + /// + [XmlElement("file_base")] + public string FileBase { get; set; } + /// /// PDF类型文件填写PDF, JPG类型文件填写JPG(JPG文件请先询问对接人当前是否支持) /// @@ -38,5 +44,11 @@ public class InvoicePDFSynModel : AopObject /// [XmlElement("user_id")] public string UserId { get; set; } + + /// + /// 压缩方式 + /// + [XmlElement("zip")] + public string Zip { get; set; } } } diff --git a/AlipaySDKNet/Domain/KoubeiShopWxloginQueryModel.cs b/AlipaySDKNet/Domain/KoubeiShopWxloginQueryModel.cs new file mode 100644 index 000000000..8526ae463 --- /dev/null +++ b/AlipaySDKNet/Domain/KoubeiShopWxloginQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// KoubeiShopWxloginQueryModel Data Structure. + /// + [Serializable] + public class KoubeiShopWxloginQueryModel : AopObject + { + /// + /// 业务类型,轻店业务传MERCHANT_APP + /// + [XmlElement("biz_type")] + public string BizType { get; set; } + + /// + /// 授权,固定值,传authorization_code + /// + [XmlElement("grant_type")] + public string GrantType { get; set; } + + /// + /// 前端页面获取的js_code + /// + [XmlElement("js_code")] + public string JsCode { get; set; } + + /// + /// 微信的app_id + /// + [XmlElement("wx_app_id")] + public string WxAppId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MiniAppServiceInfo.cs b/AlipaySDKNet/Domain/MiniAppServiceInfo.cs index b824797c9..75544b9cf 100644 --- a/AlipaySDKNet/Domain/MiniAppServiceInfo.cs +++ b/AlipaySDKNet/Domain/MiniAppServiceInfo.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Domain [Serializable] public class MiniAppServiceInfo : AopObject { + /// + /// 是否是内部标,true/false + /// + [XmlElement("is_inner")] + public bool IsInner { get; set; } + /// /// 是否订购,true/false /// diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayAmountQueryModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayAmountQueryModel.cs new file mode 100644 index 000000000..3888a53ef --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayAmountQueryModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayAmountQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayAmountQueryModel : AopObject + { + /// + /// 买方信息,这里是ISV的信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBillQueryModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBillQueryModel.cs new file mode 100644 index 000000000..e94d64c71 --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBillQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBillQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBillQueryModel : AopObject + { + /// + /// 网商账单号 + /// + [XmlElement("bill_no")] + public string BillNo { get; set; } + + /// + /// ISV买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyersignCreateModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyersignCreateModel.cs new file mode 100644 index 000000000..405827207 --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyersignCreateModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBuyersignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBuyersignCreateModel : AopObject + { + /// + /// 买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求幂等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyerunsignCreateModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyerunsignCreateModel.cs new file mode 100644 index 000000000..e811fa410 --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyerunsignCreateModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBuyerunsignCreateModel : AopObject + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel.cs new file mode 100644 index 000000000..3c5844bb4 --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel.cs @@ -0,0 +1,48 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayBuyerunsignadmitQueryModel : AopObject + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 买家信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellersignCreateModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellersignCreateModel.cs new file mode 100644 index 000000000..ccd9ecd9c --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellersignCreateModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellersignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellersignCreateModel : AopObject + { + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 店铺名称:在需要传店铺名称时 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellersignadmitQueryModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellersignadmitQueryModel.cs new file mode 100644 index 000000000..5e2624d97 --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellersignadmitQueryModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellersignadmitQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellersignadmitQueryModel : AopObject + { + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688店铺ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 店铺名称,在需要传店铺名称时 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellerunsignCreateModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellerunsignCreateModel.cs new file mode 100644 index 000000000..742928a0a --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellerunsignCreateModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignCreateModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellerunsignCreateModel : AopObject + { + /// + /// 合同编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求冥等控制ID + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 店铺名称,在需要填写店铺名称时 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellerunsignQueryModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellerunsignQueryModel.cs new file mode 100644 index 000000000..45d7f292d --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpaySellerunsignQueryModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpaySellerunsignQueryModel : AopObject + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 渠道类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// 请求幂等号 + /// + [XmlElement("request_id")] + public string RequestId { get; set; } + + /// + /// 卖家信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家场景ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// havanaId + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 日志id + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayTradeQueryModel.cs b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayTradeQueryModel.cs new file mode 100644 index 000000000..768854c06 --- /dev/null +++ b/AlipaySDKNet/Domain/MybankCreditSupplychainCreditpayTradeQueryModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// MybankCreditSupplychainCreditpayTradeQueryModel Data Structure. + /// + [Serializable] + public class MybankCreditSupplychainCreditpayTradeQueryModel : AopObject + { + /// + /// 买方信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 平台类型 + /// + [XmlElement("channel_tag")] + public string ChannelTag { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 网商交易号 + /// + [XmlElement("trade_no")] + public string TradeNo { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OfflinepayBaseRPCResponseInfo.cs b/AlipaySDKNet/Domain/OfflinepayBaseRPCResponseInfo.cs new file mode 100644 index 000000000..31625fd39 --- /dev/null +++ b/AlipaySDKNet/Domain/OfflinepayBaseRPCResponseInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OfflinepayBaseRPCResponseInfo Data Structure. + /// + [Serializable] + public class OfflinepayBaseRPCResponseInfo : AopObject + { + /// + /// 错误指示器 + /// + [XmlElement("error_indicator")] + public OfflinepayErrorIndicator ErrorIndicator { get; set; } + + /// + /// 应答扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 是否调用成功 + /// + [XmlElement("success")] + public string Success { get; set; } + + /// + /// 服务端时间 + /// + [XmlElement("time")] + public long Time { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OfflinepayErrorIndicator.cs b/AlipaySDKNet/Domain/OfflinepayErrorIndicator.cs new file mode 100644 index 000000000..404c62363 --- /dev/null +++ b/AlipaySDKNet/Domain/OfflinepayErrorIndicator.cs @@ -0,0 +1,72 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OfflinepayErrorIndicator Data Structure. + /// + [Serializable] + public class OfflinepayErrorIndicator : AopObject + { + /// + /// 右动作按钮 + /// + [XmlElement("action_button")] + public string ActionButton { get; set; } + + /// + /// 右动作按钮跳转地址 + /// + [XmlElement("action_url")] + public string ActionUrl { get; set; } + + /// + /// 针对alipayinside的定制化提示文案 + /// + [XmlElement("alipay_inside_tips")] + public string AlipayInsideTips { get; set; } + + /// + /// 是否清楚卡片本地缓存 + /// + [XmlElement("clean_card")] + public bool CleanCard { get; set; } + + /// + /// 左动作按钮 + /// + [XmlElement("default_button")] + public string DefaultButton { get; set; } + + /// + /// 默认跳转地址 + /// + [XmlElement("default_url")] + public string DefaultUrl { get; set; } + + /// + /// 错误描述 + /// + [XmlElement("desc")] + public string Desc { get; set; } + + /// + /// 错误码值 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误提示文案 + /// + [XmlElement("tips")] + public string Tips { get; set; } + + /// + /// 客户端提示类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OpenApiProvisioningBundle.cs b/AlipaySDKNet/Domain/OpenApiProvisioningBundle.cs new file mode 100644 index 000000000..fcc8a4539 --- /dev/null +++ b/AlipaySDKNet/Domain/OpenApiProvisioningBundle.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OpenApiProvisioningBundle Data Structure. + /// + [Serializable] + public class OpenApiProvisioningBundle : AopObject + { + /// + /// 加密后的数据 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 一次性公密钥 + /// + [XmlElement("ephemeral_public_key")] + public string EphemeralPublicKey { get; set; } + + /// + /// 公钥hash + /// + [XmlElement("public_key_hash")] + public string PublicKeyHash { get; set; } + + /// + /// EC_v2 + /// + [XmlElement("version")] + public string Version { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OpenApiResponseHeader.cs b/AlipaySDKNet/Domain/OpenApiResponseHeader.cs new file mode 100644 index 000000000..1bf03943a --- /dev/null +++ b/AlipaySDKNet/Domain/OpenApiResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OpenApiResponseHeader Data Structure. + /// + [Serializable] + public class OpenApiResponseHeader : AopObject + { + /// + /// 自定义状态码 + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + + /// + /// 状态信息 + /// + [XmlElement("status_message")] + public string StatusMessage { get; set; } + + /// + /// 子状态码 + /// + [XmlElement("sub_status_code")] + public string SubStatusCode { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OrderExt.cs b/AlipaySDKNet/Domain/OrderExt.cs new file mode 100644 index 000000000..2c4f744bc --- /dev/null +++ b/AlipaySDKNet/Domain/OrderExt.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OrderExt Data Structure. + /// + [Serializable] + public class OrderExt : AopObject + { + /// + /// 键值 + /// + [XmlElement("ext_key")] + public string ExtKey { get; set; } + + /// + /// 值 + /// + [XmlElement("ext_value")] + public string ExtValue { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OrderShopInfo.cs b/AlipaySDKNet/Domain/OrderShopInfo.cs new file mode 100644 index 000000000..5be2aeed2 --- /dev/null +++ b/AlipaySDKNet/Domain/OrderShopInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OrderShopInfo Data Structure. + /// + [Serializable] + public class OrderShopInfo : AopObject + { + /// + /// 店铺地址 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 商户门店id 支持英文、数字的组合 + /// + [XmlElement("merchant_shop_id")] + public string MerchantShopId { get; set; } + + /// + /// 店铺名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 联系电话-支持固话或手机号 仅支持数字、+、- + /// + [XmlElement("phone_num")] + public string PhoneNum { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/OrderShopInfoResult.cs b/AlipaySDKNet/Domain/OrderShopInfoResult.cs new file mode 100644 index 000000000..6f264f698 --- /dev/null +++ b/AlipaySDKNet/Domain/OrderShopInfoResult.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// OrderShopInfoResult Data Structure. + /// + [Serializable] + public class OrderShopInfoResult : AopObject + { + /// + /// 店铺地址 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 商户门店id 支持英文、数字的组合 + /// + [XmlElement("merchant_shop_id")] + public string MerchantShopId { get; set; } + + /// + /// 门店名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 联系电话-支持固话或手机号 仅支持数字、+、- + /// + [XmlElement("phone_num")] + public string PhoneNum { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/PayForPrivilegeCardTemplateConfig.cs b/AlipaySDKNet/Domain/PayForPrivilegeCardTemplateConfig.cs new file mode 100644 index 000000000..9edac81b8 --- /dev/null +++ b/AlipaySDKNet/Domain/PayForPrivilegeCardTemplateConfig.cs @@ -0,0 +1,40 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// PayForPrivilegeCardTemplateConfig Data Structure. + /// + [Serializable] + public class PayForPrivilegeCardTemplateConfig : AopObject + { + /// + /// 卡模板的辅助信息项列表 + /// + [XmlArray("auxiliary_item_list")] + [XmlArrayItem("pay_for_privilege_card_template_auxiliary_item")] + public List AuxiliaryItemList { get; set; } + + /// + /// 卡模板头部设置 + /// + [XmlElement("header")] + public PayForPrivilegeCardTemplateHeaderConfig Header { get; set; } + + /// + /// 卡模板的操作项列表 + /// + [XmlArray("operation_item_list")] + [XmlArrayItem("pay_for_privilege_card_template_operation_item")] + public List OperationItemList { get; set; } + + /// + /// 二级区域列表 + /// + [XmlArray("secondary_item_list")] + [XmlArrayItem("pay_for_privilege_card_template_secondary_item")] + public List SecondaryItemList { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/PayForPrivilegePromotionPlanInfo.cs b/AlipaySDKNet/Domain/PayForPrivilegePromotionPlanInfo.cs new file mode 100644 index 000000000..09d2991b2 --- /dev/null +++ b/AlipaySDKNet/Domain/PayForPrivilegePromotionPlanInfo.cs @@ -0,0 +1,74 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// PayForPrivilegePromotionPlanInfo Data Structure. + /// + [Serializable] + public class PayForPrivilegePromotionPlanInfo : AopObject + { + /// + /// 充享惠方案权益金部分,最小为0 + /// + [XmlElement("benefit")] + public string Benefit { get; set; } + + /// + /// 创建时间 + /// + [XmlElement("create_time")] + public string CreateTime { get; set; } + + /// + /// 充享惠方案的结束时间 + /// + [XmlElement("end_time")] + public string EndTime { get; set; } + + /// + /// 最近修改时间 + /// + [XmlElement("modify_time")] + public string ModifyTime { get; set; } + + /// + /// 商户创建充享惠方案时指定的外部唯一编号,用于幂等控制 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 充享惠方案有偿券部分 + /// + [XmlArray("paid_voucher_list")] + [XmlArrayItem("pay_for_privilege_paid_voucher_config")] + public List PaidVoucherList { get; set; } + + /// + /// 充享惠方案本金部分,单位元,必须大于0 + /// + [XmlElement("principal")] + public string Principal { get; set; } + + /// + /// 充享惠方案ID + /// + [XmlElement("promotion_plan_id")] + public string PromotionPlanId { get; set; } + + /// + /// 充享惠方案开始时间 + /// + [XmlElement("start_time")] + public string StartTime { get; set; } + + /// + /// 充享惠方案的状态,ENABLED(启用), DISABLED(停用) + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/PayForPrivilegeRechargeCardUseLog.cs b/AlipaySDKNet/Domain/PayForPrivilegeRechargeCardUseLog.cs index 537dcc73d..013f45f37 100644 --- a/AlipaySDKNet/Domain/PayForPrivilegeRechargeCardUseLog.cs +++ b/AlipaySDKNet/Domain/PayForPrivilegeRechargeCardUseLog.cs @@ -34,7 +34,7 @@ public class PayForPrivilegeRechargeCardUseLog : AopObject public string BizType { get; set; } /// - /// 订单ID + /// 该字段已废弃,请勿使用 /// [XmlElement("order_id")] public string OrderId { get; set; } diff --git a/AlipaySDKNet/Domain/PaymentCredential.cs b/AlipaySDKNet/Domain/PaymentCredential.cs new file mode 100644 index 000000000..35c77e965 --- /dev/null +++ b/AlipaySDKNet/Domain/PaymentCredential.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// PaymentCredential Data Structure. + /// + [Serializable] + public class PaymentCredential : AopObject + { + /// + /// 码过期时间。{UTC timestamp when the payment credential is no longer valid for payment. W3C’s definition of the ISO 8601 date and time format: yyyy-MM-dd'T'HH:mm:ss.SSSZ} + /// + [XmlElement("expiration_timestamp")] + public string ExpirationTimestamp { get; set; } + + /// + /// 码的id。{Identifier for this credential} + /// + [XmlElement("identifier")] + public string Identifier { get; set; } + + /// + /// 码类型。{To enable QR code and barcode functionality} + /// + [XmlElement("payment_credential_type")] + public string PaymentCredentialType { get; set; } + + /// + /// 码值加密结果。{The encrypted credential value} + /// + [XmlElement("value")] + public EncryptedPaymentCredential Value { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/QuestInstanceDO.cs b/AlipaySDKNet/Domain/QuestInstanceDO.cs new file mode 100644 index 000000000..61b2eba59 --- /dev/null +++ b/AlipaySDKNet/Domain/QuestInstanceDO.cs @@ -0,0 +1,87 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// QuestInstanceDO Data Structure. + /// + [Serializable] + public class QuestInstanceDO : AopObject + { + /// + /// 跳转地址:若用户已添加目标,则返回打卡页,否则返回目标详情页地址 + /// + [XmlElement("action_schema")] + public string ActionSchema { get; set; } + + /// + /// 用户当前获取卡片详情 + /// + [XmlElement("card_instance")] + public CardInstanceDO CardInstance { get; set; } + + /// + /// 卡片绑定的权益信息 + /// + [XmlArray("card_promos")] + [XmlArrayItem("card_promo_d_o")] + public List CardPromos { get; set; } + + /// + /// 用户已打卡天数 + /// + [XmlElement("day_count")] + public long DayCount { get; set; } + + /// + /// 小目标图标icon + /// + [XmlElement("icon")] + public string Icon { get; set; } + + /// + /// 目标实例ID,若用户没有添加目标,则实例为空 + /// + [XmlElement("instance_id")] + public string InstanceId { get; set; } + + /// + /// 当前目标的添加人数 + /// + [XmlElement("join_count")] + public string JoinCount { get; set; } + + /// + /// 当前用户是否添加目标 + /// + [XmlElement("joined")] + public bool Joined { get; set; } + + /// + /// 是否已打卡 + /// + [XmlElement("marked")] + public bool Marked { get; set; } + + /// + /// 目标唯一ID + /// + [XmlElement("quest_id")] + public string QuestId { get; set; } + + /// + /// 用户设定目标的提醒时间 + /// + [XmlArray("remind_times")] + [XmlArrayItem("string")] + public List RemindTimes { get; set; } + + /// + /// 小目标标题 + /// + [XmlElement("title")] + public string Title { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleConfigGetResult.cs b/AlipaySDKNet/Domain/ScheduleConfigGetResult.cs new file mode 100644 index 000000000..63158b813 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleConfigGetResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleConfigGetResult Data Structure. + /// + [Serializable] + public class ScheduleConfigGetResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlElement("data")] + public ScheduleConfigItem Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleConfigItem.cs b/AlipaySDKNet/Domain/ScheduleConfigItem.cs new file mode 100644 index 000000000..be7cb9c91 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleConfigItem.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleConfigItem Data Structure. + /// + [Serializable] + public class ScheduleConfigItem : AopObject + { + /// + /// 配制名称 + /// + [XmlElement("config_name")] + public string ConfigName { get; set; } + + /// + /// 日期列表 + /// + [XmlElement("date")] + public string Date { get; set; } + + /// + /// id + /// + [XmlElement("id")] + public string Id { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleConfigResult.cs b/AlipaySDKNet/Domain/ScheduleConfigResult.cs new file mode 100644 index 000000000..94ccd2308 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleConfigResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleConfigResult Data Structure. + /// + [Serializable] + public class ScheduleConfigResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlElement("data")] + public ScheduleConfigItem Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleListItem.cs b/AlipaySDKNet/Domain/ScheduleListItem.cs new file mode 100644 index 000000000..2aa37afcd --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleListItem.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleListItem Data Structure. + /// + [Serializable] + public class ScheduleListItem : AopObject + { + /// + /// 任务id + /// + [XmlElement("plan_id")] + public string PlanId { get; set; } + + /// + /// 任务状态枚举。 0:准备, 1:运行中 2:已完成 3: 失败 + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 任务类型。枚举,参考任务类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleListResult.cs b/AlipaySDKNet/Domain/ScheduleListResult.cs new file mode 100644 index 000000000..4c60033b0 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleListResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleListResult Data Structure. + /// + [Serializable] + public class ScheduleListResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_list_item")] + public List Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleOdItem.cs b/AlipaySDKNet/Domain/ScheduleOdItem.cs new file mode 100644 index 000000000..1f2edfd67 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleOdItem.cs @@ -0,0 +1,78 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleOdItem Data Structure. + /// + [Serializable] + public class ScheduleOdItem : AopObject + { + /// + /// 客流聚类结果分段(通常为1~6) + /// + [XmlElement("cluster_class")] + public string ClusterClass { get; set; } + + /// + /// 线路方向枚举 0:上行 1 下行 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 日均下车人数 + /// + [XmlElement("end_load")] + public string EndLoad { get; set; } + + /// + /// 下车人数比例 + /// + [XmlElement("end_load_percent")] + public string EndLoadPercent { get; set; } + + /// + /// 下车站点名称 + /// + [XmlElement("end_name")] + public string EndName { get; set; } + + /// + /// 下车站点序号 + /// + [XmlElement("end_num")] + public long EndNum { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 日均上车人数 + /// + [XmlElement("start_load")] + public string StartLoad { get; set; } + + /// + /// 杭州东 + /// + [XmlElement("start_name")] + public string StartName { get; set; } + + /// + /// 上车站点序号 + /// + [XmlElement("start_num")] + public long StartNum { get; set; } + + /// + /// 发车时段,若time_span为30,则06:00:00表示06:00:00-06:30:00的时段 + /// + [XmlElement("time_period")] + public string TimePeriod { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleOdResult.cs b/AlipaySDKNet/Domain/ScheduleOdResult.cs new file mode 100644 index 000000000..482d8ecde --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleOdResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleOdResult Data Structure. + /// + [Serializable] + public class ScheduleOdResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果列表 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_od_item")] + public List Data { get; set; } + + /// + /// 返回状态描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleShiftItem.cs b/AlipaySDKNet/Domain/ScheduleShiftItem.cs new file mode 100644 index 000000000..aff1a386c --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleShiftItem.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleShiftItem Data Structure. + /// + [Serializable] + public class ScheduleShiftItem : AopObject + { + /// + /// 班次序号(可关联排班表得到具体工作计划,0表示休息) + /// + [XmlElement("chain_num")] + public long ChainNum { get; set; } + + /// + /// 轮班周期内的第几天 + /// + [XmlElement("day_num")] + public long DayNum { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 虚拟员工编号 + /// + [XmlElement("vir_employ_id")] + public string VirEmployId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleShiftResult.cs b/AlipaySDKNet/Domain/ScheduleShiftResult.cs new file mode 100644 index 000000000..21e36619f --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleShiftResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleShiftResult Data Structure. + /// + [Serializable] + public class ScheduleShiftResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_shift_item")] + public List Data { get; set; } + + /// + /// 结果描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleTimeItem.cs b/AlipaySDKNet/Domain/ScheduleTimeItem.cs new file mode 100644 index 000000000..fc34b6cbb --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleTimeItem.cs @@ -0,0 +1,54 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTimeItem Data Structure. + /// + [Serializable] + public class ScheduleTimeItem : AopObject + { + /// + /// 起点站发车时刻列表,如07:00:00,07:30:00,…,21:30:00,22:00:00 + /// + [XmlElement("departure_time_list")] + public string DepartureTimeList { get; set; } + + /// + /// 线路方向,0:上行;1:下行 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 车辆上座率分布(Json格式,包含均值、方差、分位点等信息),如{‘min’:0.13, ‘max’:1.0, ‘mean’:0.35, ‘median’:0.40, ’pert_90’:0.78} + /// + [XmlElement("occu_rate_sts")] + public string OccuRateSts { get; set; } + + /// + /// 车次总数 + /// + [XmlElement("trip_cnt")] + public string TripCnt { get; set; } + + /// + /// 乘客等待车次数分布(日均,Json格式),如{‘1’:9999, ‘2’:10, ‘3’:2} + /// + [XmlElement("wait_bus_sts")] + public string WaitBusSts { get; set; } + + /// + /// 乘客等车时间分布(日均,Json格式,包含均值、方差、分位点等信息),如{‘min’:0, ‘max’:10, ‘mean’:5, ‘median’:5, ’pert_90’:9} + /// + [XmlElement("wait_time_sts")] + public string WaitTimeSts { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleTimeResult.cs b/AlipaySDKNet/Domain/ScheduleTimeResult.cs new file mode 100644 index 000000000..93e8c28b5 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleTimeResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTimeResult Data Structure. + /// + [Serializable] + public class ScheduleTimeResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_time_item")] + public List Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleTripItem.cs b/AlipaySDKNet/Domain/ScheduleTripItem.cs new file mode 100644 index 000000000..6cdd09138 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleTripItem.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTripItem Data Structure. + /// + [Serializable] + public class ScheduleTripItem : AopObject + { + /// + /// 方向,参考方向枚举 + /// + [XmlElement("direction")] + public string Direction { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 单程行驶时间(单位min) + /// + [XmlElement("run_time")] + public long RunTime { get; set; } + + /// + /// 若time_span为10,则06:00表示06:00-06:10的时段; 若time_span为30,则06:00表示06:00-06:30的时段 + /// + [XmlElement("time_period")] + public string TimePeriod { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleTripResult.cs b/AlipaySDKNet/Domain/ScheduleTripResult.cs new file mode 100644 index 000000000..a7fa44e72 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleTripResult.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleTripResult Data Structure. + /// + [Serializable] + public class ScheduleTripResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlArray("data")] + [XmlArrayItem("schedule_trip_item")] + public List Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleWorkItem.cs b/AlipaySDKNet/Domain/ScheduleWorkItem.cs new file mode 100644 index 000000000..516c2a218 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleWorkItem.cs @@ -0,0 +1,108 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkItem Data Structure. + /// + [Serializable] + public class ScheduleWorkItem : AopObject + { + /// + /// 该班次总里程 + /// + [XmlElement("all_miles")] + public long AllMiles { get; set; } + + /// + /// 该班次总车次数 + /// + [XmlElement("all_trip_cnt")] + public long AllTripCnt { get; set; } + + /// + /// 班次序号 + /// + [XmlElement("chain_num")] + public long ChainNum { get; set; } + + /// + /// 该班次非营运里程 + /// + [XmlElement("invalid_miles")] + public long InvalidMiles { get; set; } + + /// + /// 该班次非营运车次数 + /// + [XmlElement("invalid_trip_cnt")] + public long InvalidTripCnt { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 优化目标,0:班次最少;1:工作时长最短;2:等待时间最少;3:工作时长最均匀 + /// + [XmlElement("opt_type")] + public long OptType { get; set; } + + /// + /// 班制编号(0:通班;1:双班,2:三班) + /// + [XmlElement("shift_id")] + public string ShiftId { get; set; } + + /// + /// 车次链信息(json格式) + /// + [XmlElement("trip_chain")] + public string TripChain { get; set; } + + /// + /// 该班次营运里程 + /// + [XmlElement("valid_miles")] + public long ValidMiles { get; set; } + + /// + /// 该班次营运车次数 + /// + [XmlElement("valid_trip_cnt")] + public long ValidTripCnt { get; set; } + + /// + /// 等待时长 02:10:00 + /// + [XmlElement("wait_time")] + public string WaitTime { get; set; } + + /// + /// 工作结束时间,如20:30:00 + /// + [XmlElement("work_endtime")] + public string WorkEndtime { get; set; } + + /// + /// 班型编号(0:全天班;1:上午班,2:下午班,3:夜班) + /// + [XmlElement("work_id")] + public string WorkId { get; set; } + + /// + /// 工作开始时间,如10:00:00 + /// + [XmlElement("work_starttime")] + public string WorkStarttime { get; set; } + + /// + /// 工作时长,如15:10:00 + /// + [XmlElement("work_time")] + public string WorkTime { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleWorkItems.cs b/AlipaySDKNet/Domain/ScheduleWorkItems.cs new file mode 100644 index 000000000..8a94450a2 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleWorkItems.cs @@ -0,0 +1,27 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkItems Data Structure. + /// + [Serializable] + public class ScheduleWorkItems : AopObject + { + /// + /// 统计 + /// + [XmlArray("stats")] + [XmlArrayItem("schedule_work_stat_item")] + public List Stats { get; set; } + + /// + /// 结果 + /// + [XmlArray("work")] + [XmlArrayItem("schedule_work_item")] + public List Work { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleWorkResult.cs b/AlipaySDKNet/Domain/ScheduleWorkResult.cs new file mode 100644 index 000000000..192f57a6e --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleWorkResult.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkResult Data Structure. + /// + [Serializable] + public class ScheduleWorkResult : AopObject + { + /// + /// 返回码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 结果 + /// + [XmlElement("data")] + public ScheduleWorkItems Data { get; set; } + + /// + /// 返回码描述 + /// + [XmlElement("message")] + public string Message { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ScheduleWorkStatItem.cs b/AlipaySDKNet/Domain/ScheduleWorkStatItem.cs new file mode 100644 index 000000000..97b2fee42 --- /dev/null +++ b/AlipaySDKNet/Domain/ScheduleWorkStatItem.cs @@ -0,0 +1,84 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ScheduleWorkStatItem Data Structure. + /// + [Serializable] + public class ScheduleWorkStatItem : AopObject + { + /// + /// 总里程统计指标 {sum:2500,mean:130,max:180,min:60,std:40.2} + /// + [XmlElement("all_miles_sts")] + public string AllMilesSts { get; set; } + + /// + /// 总车次数统计指标 {sum:250,mean:13,max:18,min:6,std:4.02} + /// + [XmlElement("all_trip_sts")] + public string AllTripSts { get; set; } + + /// + /// 下行总班次数 + /// + [XmlElement("down_chain_cnt")] + public long DownChainCnt { get; set; } + + /// + /// 非营运里程统计指标 {“1”:220,“2”:50,“3”:120,“4”:50,”5”:0} Key为排班计划中的发车类型 + /// + [XmlElement("invalid_miles_sts")] + public string InvalidMilesSts { get; set; } + + /// + /// 非营运车次数统计指标 {“1”:22,“2”:5,“3”:12,“4”:5,”5”:0} Key为排班计划中的发车类型 + /// + [XmlElement("invalid_trip_sts")] + public string InvalidTripSts { get; set; } + + /// + /// 线路id + /// + [XmlElement("line_id")] + public string LineId { get; set; } + + /// + /// 优化目标,0:班次最少;1:工作时长最短;2:等待时间最少;3:工作时长最均匀 + /// + [XmlElement("opt_type")] + public long OptType { get; set; } + + /// + /// 上行总班次数 + /// + [XmlElement("up_chain_cnt")] + public long UpChainCnt { get; set; } + + /// + /// 营运里程统计指标 {sum:2300,mean:110,max:150,min:40,std:30.2} + /// + [XmlElement("valid_miles_sts")] + public string ValidMilesSts { get; set; } + + /// + /// 营运车次数统计指标 {sum:230,mean:11,max:15,min:4,std:3.02} + /// + [XmlElement("valid_trip_sts")] + public string ValidTripSts { get; set; } + + /// + /// 等待时长统计指标(Json) {sum:55:10:00,mean:02:10:00,max:06:10:00,min:00:50:00,std:01:01:00}' + /// + [XmlElement("wait_time_sts")] + public string WaitTimeSts { get; set; } + + /// + /// 工作时长统计指标(Json) {sum:246:03:00,mean:10:10:00,max:17:10:00,min:06:50:00,std:02:01:00} + /// + [XmlElement("work_time_sts")] + public string WorkTimeSts { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ServiceTimeInfo.cs b/AlipaySDKNet/Domain/ServiceTimeInfo.cs new file mode 100644 index 000000000..c28fbc5e6 --- /dev/null +++ b/AlipaySDKNet/Domain/ServiceTimeInfo.cs @@ -0,0 +1,26 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ServiceTimeInfo Data Structure. + /// + [Serializable] + public class ServiceTimeInfo : AopObject + { + /// + /// 提前预约时间,单位分钟,大于0 + /// + [XmlElement("advance_time")] + public long AdvanceTime { get; set; } + + /// + /// 时间节点,精确到分,“-” 分隔符 + /// + [XmlArray("time_nodes")] + [XmlArrayItem("string")] + public List TimeNodes { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ShopServiceItem.cs b/AlipaySDKNet/Domain/ShopServiceItem.cs new file mode 100644 index 000000000..a4b84a7d4 --- /dev/null +++ b/AlipaySDKNet/Domain/ShopServiceItem.cs @@ -0,0 +1,32 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ShopServiceItem Data Structure. + /// + [Serializable] + public class ShopServiceItem : AopObject + { + /// + /// 对服务的项目的详细描述 + /// + [XmlElement("description")] + public string Description { get; set; } + + /// + /// 服务项目名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 服务项目需要图片素材 + /// + [XmlArray("pictures")] + [XmlArrayItem("string")] + public List Pictures { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ShopStaffInfo.cs b/AlipaySDKNet/Domain/ShopStaffInfo.cs new file mode 100644 index 000000000..cad82ff17 --- /dev/null +++ b/AlipaySDKNet/Domain/ShopStaffInfo.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ShopStaffInfo Data Structure. + /// + [Serializable] + public class ShopStaffInfo : AopObject + { + /// + /// 服务人员描述 + /// + [XmlElement("desc")] + public string Desc { get; set; } + + /// + /// 工作人员名称 + /// + [XmlElement("name")] + public string Name { get; set; } + + /// + /// 服务人员照片 + /// + [XmlElement("picture")] + public string Picture { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/SimpleShopInfo.cs b/AlipaySDKNet/Domain/SimpleShopInfo.cs new file mode 100644 index 000000000..9ef72a68e --- /dev/null +++ b/AlipaySDKNet/Domain/SimpleShopInfo.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// SimpleShopInfo Data Structure. + /// + [Serializable] + public class SimpleShopInfo : AopObject + { + /// + /// 地址信息 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 线下门店ID + /// + [XmlElement("shop_id")] + public string ShopId { get; set; } + + /// + /// 线下店名称 + /// + [XmlElement("shop_name")] + public string ShopName { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/StoreOrderDTO.cs b/AlipaySDKNet/Domain/StoreOrderDTO.cs new file mode 100644 index 000000000..a9fadef20 --- /dev/null +++ b/AlipaySDKNet/Domain/StoreOrderDTO.cs @@ -0,0 +1,69 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// StoreOrderDTO Data Structure. + /// + [Serializable] + public class StoreOrderDTO : AopObject + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 联系电话 + /// + [XmlElement("contact_phone")] + public string ContactPhone { get; set; } + + /// + /// 业务场景对应的扩展字段 + /// + [XmlArray("ext")] + [XmlArrayItem("order_ext")] + public List Ext { get; set; } + + /// + /// 订单相关的商品信息 + /// + [XmlArray("goods_info_list")] + [XmlArrayItem("store_order_good")] + public List GoodsInfoList { get; set; } + + /// + /// 订单的描述 + /// + [XmlElement("memo")] + public string Memo { get; set; } + + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 卖家id + /// + [XmlElement("seller_id")] + public string SellerId { get; set; } + + /// + /// 姓名 + /// + [XmlElement("user_name")] + public string UserName { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/StoreOrderGood.cs b/AlipaySDKNet/Domain/StoreOrderGood.cs new file mode 100644 index 000000000..1adc52e15 --- /dev/null +++ b/AlipaySDKNet/Domain/StoreOrderGood.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// StoreOrderGood Data Structure. + /// + [Serializable] + public class StoreOrderGood : AopObject + { + /// + /// 商品的ID + /// + [XmlElement("item_id")] + public string ItemId { get; set; } + + /// + /// 商品数量 + /// + [XmlElement("quantity")] + public long Quantity { get; set; } + + /// + /// 规格的ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/SubPackage.cs b/AlipaySDKNet/Domain/SubPackage.cs new file mode 100644 index 000000000..17c372251 --- /dev/null +++ b/AlipaySDKNet/Domain/SubPackage.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// SubPackage Data Structure. + /// + [Serializable] + public class SubPackage : AopObject + { + /// + /// 构建结果地址 + /// + [XmlElement("build_package_url")] + public string BuildPackageUrl { get; set; } + + /// + /// 分包路径 + /// + [XmlElement("path")] + public string Path { get; set; } + + /// + /// 源码地址 + /// + [XmlElement("source_url")] + public string SourceUrl { get; set; } + + /// + /// 分包的类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/TicketInfo.cs b/AlipaySDKNet/Domain/TicketInfo.cs new file mode 100644 index 000000000..298aa0919 --- /dev/null +++ b/AlipaySDKNet/Domain/TicketInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TicketInfo Data Structure. + /// + [Serializable] + public class TicketInfo : AopObject + { + /// + /// 地址 不同类型下的地址含义不同。若type为MEAL_NUM,address则代表取餐地点;若type为PICKUP_CODE,address则代表取件地点。其他类型查看小程序订单产品文档 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 单据号 不同类型下单据号含义不同。若类型为MEAL_NUM,则ticket_no表示取餐号;若类型为PICKUP_CODE,则ticket_no表示取件码;其他类型查看小程序订单产品文档 + /// + [XmlElement("ticket_no")] + public string TicketNo { get; set; } + + /// + /// 时间 不同类型下的地址含义不同。若type为MEAL_NUM,time则代表取餐时间;若type为PICKUP_CODE,address则代表取件时间。其他类型查看小程序订单产品文档 + /// + [XmlElement("time")] + public string Time { get; set; } + + /// + /// 凭证类型 MEAL_NUM:取餐号 PICKUP_CODE:取件号 具体类型查看产品文档 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/TicketInfoResult.cs b/AlipaySDKNet/Domain/TicketInfoResult.cs new file mode 100644 index 000000000..a5dc04dd1 --- /dev/null +++ b/AlipaySDKNet/Domain/TicketInfoResult.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TicketInfoResult Data Structure. + /// + [Serializable] + public class TicketInfoResult : AopObject + { + /// + /// 地址 不同类型下的地址含义不同。若type为MEAL_NUM,address则代表取餐地点;若type为PICKUP_CODE,address则代表取件地点。其他类型查看小程序订单产品文档 + /// + [XmlElement("address")] + public string Address { get; set; } + + /// + /// 单据号 不同类型下单据号含义不同。若类型为MEAL_NUM,则ticket_no表示取餐号;若类型为PICKUP_CODE,则ticket_no表示取件码;其他类型查看小程序订单产品文档 + /// + [XmlElement("ticket_no")] + public string TicketNo { get; set; } + + /// + /// 时间 不同类型下的地址含义不同。若type为MEAL_NUM,time则代表取餐时间;若type为PICKUP_CODE,address则代表取件时间。其他类型查看小程序订单产品文档 + /// + [XmlElement("time")] + public string Time { get; set; } + + /// + /// 凭证类型 MEAL_NUM:取餐号 PICKUP_CODE:取件号 具体类型查看产品文档 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/YcsPri.cs b/AlipaySDKNet/Domain/YcsPri.cs deleted file mode 100644 index 44414847c..000000000 --- a/AlipaySDKNet/Domain/YcsPri.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// YcsPri Data Structure. - /// - [Serializable] - public class YcsPri : AopObject - { - /// - /// aaa - /// - [XmlElement("a")] - public string A { get; set; } - - /// - /// 支持输入标准html超链接:Link text例如:蚂蚁开放平台 - /// - [XmlElement("b")] - public string B { get; set; } - } -} diff --git a/AlipaySDKNet/Domain/ZhimaDataStateDataSyncModel.cs b/AlipaySDKNet/Domain/ZhimaDataStateDataSyncModel.cs index f13b4705c..b67c1a870 100644 --- a/AlipaySDKNet/Domain/ZhimaDataStateDataSyncModel.cs +++ b/AlipaySDKNet/Domain/ZhimaDataStateDataSyncModel.cs @@ -22,7 +22,7 @@ public class ZhimaDataStateDataSyncModel : AopObject public string BizStateCode { get; set; } /// - /// 此类目为分配给商户在一个信用服务下的不同类目分类,(如约定产品下的电影类目) + /// 此类目为分配给商户在内容下的不同分类,(如电影,直播) /// [XmlElement("category_code")] public string CategoryCode { get; set; } diff --git a/AlipaySDKNet/Domain/ZhimaMerchantContractCommonConfirmModel.cs b/AlipaySDKNet/Domain/ZhimaMerchantContractCommonConfirmModel.cs new file mode 100644 index 000000000..3f782882e --- /dev/null +++ b/AlipaySDKNet/Domain/ZhimaMerchantContractCommonConfirmModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractCommonConfirmModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractCommonConfirmModel : AopObject + { + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 应约者id(淘宝id/支付宝user_id) + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZhimaMerchantContractCommonQueryModel.cs b/AlipaySDKNet/Domain/ZhimaMerchantContractCommonQueryModel.cs new file mode 100644 index 000000000..2124c3ad5 --- /dev/null +++ b/AlipaySDKNet/Domain/ZhimaMerchantContractCommonQueryModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractCommonQueryModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractCommonQueryModel : AopObject + { + /// + /// 合约单号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 应约者id(淘宝id/支付宝user_id) + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZhimaMerchantContractOfferModifyModel.cs b/AlipaySDKNet/Domain/ZhimaMerchantContractOfferModifyModel.cs new file mode 100644 index 000000000..2e4a44083 --- /dev/null +++ b/AlipaySDKNet/Domain/ZhimaMerchantContractOfferModifyModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractOfferModifyModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractOfferModifyModel : AopObject + { + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 发约单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 信用服务id,需要与芝麻技术确定此值 + /// + [XmlElement("service_id")] + public string ServiceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZhimaMerchantContractOfferQueryModel.cs b/AlipaySDKNet/Domain/ZhimaMerchantContractOfferQueryModel.cs new file mode 100644 index 000000000..47d663fc8 --- /dev/null +++ b/AlipaySDKNet/Domain/ZhimaMerchantContractOfferQueryModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractOfferQueryModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractOfferQueryModel : AopObject + { + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZhimaMerchantContractOnofferQueryModel.cs b/AlipaySDKNet/Domain/ZhimaMerchantContractOnofferQueryModel.cs new file mode 100644 index 000000000..7e8a8ffb3 --- /dev/null +++ b/AlipaySDKNet/Domain/ZhimaMerchantContractOnofferQueryModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractOnofferQueryModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractOnofferQueryModel : AopObject + { + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 应约者id(淘宝id/支付宝user_id) + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZhimaMerchantContractQuickCreateModel.cs b/AlipaySDKNet/Domain/ZhimaMerchantContractQuickCreateModel.cs new file mode 100644 index 000000000..62ce265df --- /dev/null +++ b/AlipaySDKNet/Domain/ZhimaMerchantContractQuickCreateModel.cs @@ -0,0 +1,126 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// ZhimaMerchantContractQuickCreateModel Data Structure. + /// + [Serializable] + public class ZhimaMerchantContractQuickCreateModel : AopObject + { + /// + /// 此类目为分配给商户在内容下的不同类目分类,(如直播/电影类目) + /// + [XmlElement("category_code")] + public string CategoryCode { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 是否提供优惠券标识true/false + /// + [XmlElement("coupon_flag")] + public string CouponFlag { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容名称 + /// + [XmlElement("out_content_name")] + public string OutContentName { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 信用服务id,需要与芝麻技术确定此值 + /// + [XmlElement("service_id")] + public string ServiceId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZmContractDetail.cs b/AlipaySDKNet/Domain/ZmContractDetail.cs new file mode 100644 index 000000000..f2bbeaaeb --- /dev/null +++ b/AlipaySDKNet/Domain/ZmContractDetail.cs @@ -0,0 +1,207 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// ZmContractDetail Data Structure. + /// + [Serializable] + public class ZmContractDetail : AopObject + { + /// + /// 取消的操作主体 用于区分是系统取消还是用户主动取消 + /// + [XmlElement("cancel_operator")] + public string CancelOperator { get; set; } + + /// + /// 是否支持取消 + /// + [XmlElement("cancel_supported")] + public bool CancelSupported { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 合约状态 INIT:初始化,待应约状态 EFFECT:生效 COMPLETE:完结 CLOSE:关闭 INVALID:失效 + /// + [XmlElement("contract_status")] + public string ContractStatus { get; set; } + + /// + /// 事件详情,事件可以为打卡事件等所有履约推进事件 + /// + [XmlArray("event_detail")] + [XmlArrayItem("bcc_event_detail")] + public List EventDetail { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 应约时间 + /// + [XmlElement("gmt_accept")] + public string GmtAccept { get; set; } + + /// + /// 合约取消时间 + /// + [XmlElement("gmt_cancel")] + public string GmtCancel { get; set; } + + /// + /// 逾期时间 + /// + [XmlElement("gmt_due")] + public string GmtDue { get; set; } + + /// + /// 合约完结时间 + /// + [XmlElement("gmt_end")] + public string GmtEnd { get; set; } + + /// + /// 合约生效时间 + /// + [XmlElement("gmt_valid")] + public string GmtValid { get; set; } + + /// + /// 事项结束时间 + /// + [XmlElement("item_end_time")] + public string ItemEndTime { get; set; } + + /// + /// 事项号 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 事项开始时间 + /// + [XmlElement("item_start_time")] + public string ItemStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 发约单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + + /// + /// 事项下标的信息 + /// + [XmlArray("subjects")] + [XmlArrayItem("bcc_subject_detail")] + public List Subjects { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs b/AlipaySDKNet/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs index ee687d886..597313cf6 100644 --- a/AlipaySDKNet/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs +++ b/AlipaySDKNet/Domain/ZolozAuthenticationCustomerSmilepayInitializeModel.cs @@ -9,6 +9,18 @@ namespace Aop.Api.Domain [Serializable] public class ZolozAuthenticationCustomerSmilepayInitializeModel : AopObject { + /// + /// 刷脸服务Id + /// + [XmlElement("service_id")] + public string ServiceId { get; set; } + + /// + /// 商户可传入刷脸服务所需的扩展参数,json格式 + /// + [XmlElement("service_params")] + public string ServiceParams { get; set; } + /// /// { "apdidToken": "设备指纹", "appName": "应用名称", "appVersion": "应用版本", "bioMetaInfo": "生物信息如2.3.0:3,-4" } /// diff --git a/AlipaySDKNet/Request/AlipayCommerceAirCallcenterTradeApplyRequest.cs b/AlipaySDKNet/Request/AlipayCommerceAirCallcenterTradeApplyRequest.cs new file mode 100644 index 000000000..d8495f7a7 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayCommerceAirCallcenterTradeApplyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.commerce.air.callcenter.trade.apply + /// + public class AlipayCommerceAirCallcenterTradeApplyRequest : IAopRequest + { + /// + /// 航司电话订票待申请接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.commerce.air.callcenter.trade.apply"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayCommerceTransportTaxiDriverSendRequest.cs b/AlipaySDKNet/Request/AlipayCommerceTransportTaxiDriverSendRequest.cs new file mode 100644 index 000000000..7ed7d21fa --- /dev/null +++ b/AlipaySDKNet/Request/AlipayCommerceTransportTaxiDriverSendRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.commerce.transport.taxi.driver.send + /// + public class AlipayCommerceTransportTaxiDriverSendRequest : IAopRequest + { + /// + /// 机构向支付宝发送出租车司机信息 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.commerce.transport.taxi.driver.send"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayCommerceTransportVehicleownerTransdataSyncRequest.cs b/AlipaySDKNet/Request/AlipayCommerceTransportVehicleownerTransdataSyncRequest.cs new file mode 100644 index 000000000..fb928f638 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayCommerceTransportVehicleownerTransdataSyncRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.commerce.transport.vehicleowner.transdata.sync + /// + public class AlipayCommerceTransportVehicleownerTransdataSyncRequest : IAopRequest + { + /// + /// 车服数据迁移 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.commerce.transport.vehicleowner.transdata.sync"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualconfigGetRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualconfigGetRequest.cs new file mode 100644 index 000000000..8ae3599a0 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualconfigGetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualconfig.get + /// + public class AlipayDataAiserviceCloudbusSchedualconfigGetRequest : IAopRequest + { + /// + /// 排班调度配制获取 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualconfig.get"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualconfigSetRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualconfigSetRequest.cs new file mode 100644 index 000000000..3123a8977 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualconfigSetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualconfig.set + /// + public class AlipayDataAiserviceCloudbusSchedualconfigSetRequest : IAopRequest + { + /// + /// 排班调度配制接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualconfig.set"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtaskAddRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtaskAddRequest.cs new file mode 100644 index 000000000..da48ea87a --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtaskAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtask.add + /// + public class AlipayDataAiserviceCloudbusSchedualtaskAddRequest : IAopRequest + { + /// + /// 排班调度任务提交 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtask.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtaskQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtaskQueryRequest.cs new file mode 100644 index 000000000..68522ee2c --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtaskQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtask.query + /// + public class AlipayDataAiserviceCloudbusSchedualtaskQueryRequest : IAopRequest + { + /// + /// 排班调度排班任务查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtask.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest.cs new file mode 100644 index 000000000..c8a451b6f --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtasktime.add + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeAddRequest : IAopRequest + { + /// + /// 时刻表排班任务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtasktime.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest.cs new file mode 100644 index 000000000..8d0d7f535 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.schedualtasktime.query + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeQueryRequest : IAopRequest + { + /// + /// 排班调度时刻表任务查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.schedualtasktime.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletasklistQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletasklistQueryRequest.cs new file mode 100644 index 000000000..582ae8541 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletasklistQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletasklist.query + /// + public class AlipayDataAiserviceCloudbusScheduletasklistQueryRequest : IAopRequest + { + /// + /// 排班调度任务列表查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletasklist.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskodAddRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskodAddRequest.cs new file mode 100644 index 000000000..18f92b3c8 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskodAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskod.add + /// + public class AlipayDataAiserviceCloudbusScheduletaskodAddRequest : IAopRequest + { + /// + /// 排班调度客流任务提交 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskod.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskodQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskodQueryRequest.cs new file mode 100644 index 000000000..ddc98b790 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskodQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskod.query + /// + public class AlipayDataAiserviceCloudbusScheduletaskodQueryRequest : IAopRequest + { + /// + /// 排班调度客流任务查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskod.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest.cs new file mode 100644 index 000000000..64eacd9bb --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskshift.add + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftAddRequest : IAopRequest + { + /// + /// 排班调度---轮班任务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskshift.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest.cs new file mode 100644 index 000000000..cbdba26e8 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletaskshift.query + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftQueryRequest : IAopRequest + { + /// + /// 排班调度--轮班任务查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletaskshift.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletriptimeGetRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletriptimeGetRequest.cs new file mode 100644 index 000000000..9e5f5ee67 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusScheduletriptimeGetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.aiservice.cloudbus.scheduletriptime.get + /// + public class AlipayDataAiserviceCloudbusScheduletriptimeGetRequest : IAopRequest + { + /// + /// 排班调度-单程时间获取接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.aiservice.cloudbus.scheduletriptime.get"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayDataDataserviceAdDataQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataDataserviceAdDataQueryRequest.cs new file mode 100644 index 000000000..5af9e6e42 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataDataserviceAdDataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.data.dataservice.ad.data.query + /// + public class AlipayDataDataserviceAdDataQueryRequest : IAopRequest + { + /// + /// 广告投放数据查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.data.dataservice.ad.data.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayEbppInspectNotifyRequest.cs b/AlipaySDKNet/Request/AlipayEbppInspectNotifyRequest.cs new file mode 100644 index 000000000..4a4c8e298 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayEbppInspectNotifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.ebpp.inspect.notify + /// + public class AlipayEbppInspectNotifyRequest : IAopRequest + { + /// + /// 引擎检测结果同步 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.ebpp.inspect.notify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayInsSceneDxDataQueryRequest.cs b/AlipaySDKNet/Request/AlipayInsSceneDxDataQueryRequest.cs new file mode 100644 index 000000000..337ce8eb6 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayInsSceneDxDataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.ins.scene.dx.data.query + /// + public class AlipayInsSceneDxDataQueryRequest : IAopRequest + { + /// + /// dx数据服务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.ins.scene.dx.data.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayInsSceneSellerDataQueryRequest.cs b/AlipaySDKNet/Request/AlipayInsSceneSellerDataQueryRequest.cs new file mode 100644 index 000000000..6e60ec730 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayInsSceneSellerDataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.ins.scene.seller.data.query + /// + public class AlipayInsSceneSellerDataQueryRequest : IAopRequest + { + /// + /// 商家保障中心数据服务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.ins.scene.seller.data.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMarketingCampaignCommoneventApplyRequest.cs b/AlipaySDKNet/Request/AlipayMarketingCampaignCommoneventApplyRequest.cs new file mode 100644 index 000000000..01020546d --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMarketingCampaignCommoneventApplyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.marketing.campaign.commonevent.apply + /// + public class AlipayMarketingCampaignCommoneventApplyRequest : IAopRequest + { + /// + /// 灯火ADX通用事件接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.marketing.campaign.commonevent.apply"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeMemberremainingQueryRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeMemberremainingQueryRequest.cs new file mode 100644 index 000000000..b561f94bb --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeMemberremainingQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.memberremaining.query + /// + public class AlipayMerchantPayforprivilegeMemberremainingQueryRequest : IAopRequest + { + /// + /// 会员充值余额查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.memberremaining.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeMerchantremainingQueryRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeMerchantremainingQueryRequest.cs new file mode 100644 index 000000000..72230346f --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeMerchantremainingQueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.merchantremaining.query + /// + public class AlipayMerchantPayforprivilegeMerchantremainingQueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.merchantremaining.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePayCreateRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePayCreateRequest.cs new file mode 100644 index 000000000..88768b3b2 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePayCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.pay.create + /// + public class AlipayMerchantPayforprivilegePayCreateRequest : IAopRequest + { + /// + /// 创建充值卡支付单 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.pay.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeProfileQueryRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeProfileQueryRequest.cs new file mode 100644 index 000000000..ad01408c4 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeProfileQueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.profile.query + /// + public class AlipayMerchantPayforprivilegeProfileQueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.profile.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeProfileSetRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeProfileSetRequest.cs new file mode 100644 index 000000000..2b920eab7 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeProfileSetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.profile.set + /// + public class AlipayMerchantPayforprivilegeProfileSetRequest : IAopRequest + { + /// + /// 充享惠业务配置设置 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.profile.set"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanCreateRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanCreateRequest.cs new file mode 100644 index 000000000..9b8c099b2 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.promotionplan.create + /// + public class AlipayMerchantPayforprivilegePromotionplanCreateRequest : IAopRequest + { + /// + /// 创建充值方案 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.promotionplan.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanModifyRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanModifyRequest.cs new file mode 100644 index 000000000..85fd7b9f4 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.promotionplan.modify + /// + public class AlipayMerchantPayforprivilegePromotionplanModifyRequest : IAopRequest + { + /// + /// 修改储值方案 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.promotionplan.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanQueryRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanQueryRequest.cs new file mode 100644 index 000000000..9f95cc693 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegePromotionplanQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.promotionplan.query + /// + public class AlipayMerchantPayforprivilegePromotionplanQueryRequest : IAopRequest + { + /// + /// 查询储值方案 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.promotionplan.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUselogBatchqueryRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUselogBatchqueryRequest.cs new file mode 100644 index 000000000..c6ccf42ec --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUselogBatchqueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.uselog.batchquery + /// + public class AlipayMerchantPayforprivilegeUselogBatchqueryRequest : IAopRequest + { + /// + /// 分页查询充值的消费记录 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.uselog.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUserrelationCreateRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUserrelationCreateRequest.cs new file mode 100644 index 000000000..e6aee981d --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUserrelationCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.userrelation.create + /// + public class AlipayMerchantPayforprivilegeUserrelationCreateRequest : IAopRequest + { + /// + /// 建立会员关系 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.userrelation.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUserrelationQueryRequest.cs b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUserrelationQueryRequest.cs new file mode 100644 index 000000000..5313a62e5 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayMerchantPayforprivilegeUserrelationQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.merchant.payforprivilege.userrelation.query + /// + public class AlipayMerchantPayforprivilegeUserrelationQueryRequest : IAopRequest + { + /// + /// 查询会员关系 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.merchant.payforprivilege.userrelation.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayOpenAgentFacetofaceSignRequest.cs b/AlipaySDKNet/Request/AlipayOpenAgentFacetofaceSignRequest.cs index 096b13ddf..d766c77d8 100644 --- a/AlipaySDKNet/Request/AlipayOpenAgentFacetofaceSignRequest.cs +++ b/AlipaySDKNet/Request/AlipayOpenAgentFacetofaceSignRequest.cs @@ -46,7 +46,7 @@ public class AlipayOpenAgentFacetofaceSignRequest : IAopUploadRequest - /// 服务费率(%),0.38~3之间,精确到0.01。 当签约且授权sign_and_auth=true时,必填。 + /// 服务费率(%),0.38~3之间, 特殊行业除外。当签约且授权标识sign_and_auth=true时,该费率信息必填。 /// public string Rate { get; set; } @@ -61,7 +61,7 @@ public class AlipayOpenAgentFacetofaceSignRequest : IAopUploadRequest - /// 签约且授权标识,默认为false + /// 签约且授权标识,默认为false,只进行签约操作; 如果设置为true,则表示签约成功后,会自动进行应用授权操作。 /// public Nullable SignAndAuth { get; set; } diff --git a/AlipaySDKNet/Request/AlipayOpenDafBatchqueryRequest.cs b/AlipaySDKNet/Request/AlipayOpenDafBatchqueryRequest.cs new file mode 100644 index 000000000..f44e55a92 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayOpenDafBatchqueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.open.daf.batchquery + /// + public class AlipayOpenDafBatchqueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.open.daf.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayOpenMiniVersionAuditApplyRequest.cs b/AlipaySDKNet/Request/AlipayOpenMiniVersionAuditApplyRequest.cs index b402a30d6..f49490969 100644 --- a/AlipaySDKNet/Request/AlipayOpenMiniVersionAuditApplyRequest.cs +++ b/AlipaySDKNet/Request/AlipayOpenMiniVersionAuditApplyRequest.cs @@ -12,7 +12,7 @@ namespace Aop.Api.Request public class AlipayOpenMiniVersionAuditApplyRequest : IAopUploadRequest { /// - /// 小程序类目,格式为 第一个一级类目_第一个二级类目;第二个一级类目_第二个二级类目,详细类目可以参考https://docs.alipay.com/isv/10325,如果不填默认采用当前小程序应用类目。使用默认应用类目后不需要再次上传营业执照号、营业执照名、营业执照截图、营业执照有效期。 + /// 小程序类目,格式为 第一个一级类目_第一个二级类目;第二个一级类目_第二个二级类目,详细类目可以通过 https://docs.open.alipay.com/api_49/alipay.open.mini.category.query接口查询,如果不填默认采用当前小程序应用类目。使用默认应用类目后不需要再次上传营业执照号、营业执照名、营业执照截图、营业执照有效期。 /// public string AppCategoryIds { get; set; } diff --git a/AlipaySDKNet/Request/AlipayPayCodecApplepayCredentialsGetRequest.cs b/AlipaySDKNet/Request/AlipayPayCodecApplepayCredentialsGetRequest.cs new file mode 100644 index 000000000..537d98bf8 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayPayCodecApplepayCredentialsGetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.pay.codec.applepay.credentials.get + /// + public class AlipayPayCodecApplepayCredentialsGetRequest : IAopRequest + { + /// + /// applepay付款码获取 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.pay.codec.applepay.credentials.get"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayPayCodecApplepayEstablishSetRequest.cs b/AlipaySDKNet/Request/AlipayPayCodecApplepayEstablishSetRequest.cs new file mode 100644 index 000000000..1b52933d0 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayPayCodecApplepayEstablishSetRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.pay.codec.applepay.establish.set + /// + public class AlipayPayCodecApplepayEstablishSetRequest : IAopRequest + { + /// + /// wagu付款码证书加载 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.pay.codec.applepay.establish.set"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipaySocialAntforestTreeSyncRequest.cs b/AlipaySDKNet/Request/AlipaySocialAntforestTreeSyncRequest.cs new file mode 100644 index 000000000..ef7b86ee6 --- /dev/null +++ b/AlipaySDKNet/Request/AlipaySocialAntforestTreeSyncRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.antforest.tree.sync + /// + public class AlipaySocialAntforestTreeSyncRequest : IAopRequest + { + /// + /// 同步外部证书到蚂蚁森林 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.antforest.tree.sync"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipaySocialAntiepSceneSendRequest.cs b/AlipaySDKNet/Request/AlipaySocialAntiepSceneSendRequest.cs new file mode 100644 index 000000000..ee02a8358 --- /dev/null +++ b/AlipaySDKNet/Request/AlipaySocialAntiepSceneSendRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.antiep.scene.send + /// + public class AlipaySocialAntiepSceneSendRequest : IAopRequest + { + /// + /// 社区互娱平台场景上报行为 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.antiep.scene.send"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceAddRequest.cs b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceAddRequest.cs new file mode 100644 index 000000000..212642ed5 --- /dev/null +++ b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceAddRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.add + /// + public class AlipaySocialBaseQuestInstanceAddRequest : IAopRequest + { + /// + /// 用户添加小目标 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.add"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceModifyRequest.cs b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceModifyRequest.cs new file mode 100644 index 000000000..43de226b5 --- /dev/null +++ b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.modify + /// + public class AlipaySocialBaseQuestInstanceModifyRequest : IAopRequest + { + /// + /// 小目标实例配置接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceQueryRequest.cs b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceQueryRequest.cs new file mode 100644 index 000000000..79fea32bd --- /dev/null +++ b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.query + /// + public class AlipaySocialBaseQuestInstanceQueryRequest : IAopRequest + { + /// + /// 查询用户小目标目标实例接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceSubmitRequest.cs b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceSubmitRequest.cs new file mode 100644 index 000000000..221b8f3f2 --- /dev/null +++ b/AlipaySDKNet/Request/AlipaySocialBaseQuestInstanceSubmitRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.social.base.quest.instance.submit + /// + public class AlipaySocialBaseQuestInstanceSubmitRequest : IAopRequest + { + /// + /// 小目标打卡接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.social.base.quest.instance.submit"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleCreateRequest.cs b/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleCreateRequest.cs new file mode 100644 index 000000000..649cda56f --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.applepay.provisioningbundle.create + /// + public class AlipayUserApplepayProvisioningbundleCreateRequest : IAopRequest + { + /// + /// ApplePay开卡接口(用于压测) + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.applepay.provisioningbundle.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleEffectRequest.cs b/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleEffectRequest.cs new file mode 100644 index 000000000..44a0c790c --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleEffectRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.applepay.provisioningbundle.effect + /// + public class AlipayUserApplepayProvisioningbundleEffectRequest : IAopRequest + { + /// + /// wagu激活卡片接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.applepay.provisioningbundle.effect"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleQueryRequest.cs b/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleQueryRequest.cs new file mode 100644 index 000000000..c28b2794c --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserApplepayProvisioningbundleQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.applepay.provisioningbundle.query + /// + public class AlipayUserApplepayProvisioningbundleQueryRequest : IAopRequest + { + /// + /// wagu获取卡片信息接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.applepay.provisioningbundle.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserMpointAuthbasePayRequest.cs b/AlipaySDKNet/Request/AlipayUserMpointAuthbasePayRequest.cs new file mode 100644 index 000000000..0dda79ac6 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserMpointAuthbasePayRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.authbase.pay + /// + public class AlipayUserMpointAuthbasePayRequest : IAopRequest + { + /// + /// 支付宝会员积分扣减接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.authbase.pay"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserMpointAuthbaseQueryRequest.cs b/AlipaySDKNet/Request/AlipayUserMpointAuthbaseQueryRequest.cs new file mode 100644 index 000000000..42a195f47 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserMpointAuthbaseQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.authbase.query + /// + public class AlipayUserMpointAuthbaseQueryRequest : IAopRequest + { + /// + /// 用户等级和积分查询接口(不需要授权) + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.authbase.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserMpointPayRequest.cs b/AlipaySDKNet/Request/AlipayUserMpointPayRequest.cs new file mode 100644 index 000000000..0eac3c39c --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserMpointPayRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.pay + /// + public class AlipayUserMpointPayRequest : IAopRequest + { + /// + /// 蚂蚁会员积分支付接口(需要用户授权) + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.pay"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserMpointQueryRequest.cs b/AlipaySDKNet/Request/AlipayUserMpointQueryRequest.cs new file mode 100644 index 000000000..474f22a19 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserMpointQueryRequest.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.query + /// + public class AlipayUserMpointQueryRequest : IAopRequest + { + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AlipayUserMpointRefundRequest.cs b/AlipaySDKNet/Request/AlipayUserMpointRefundRequest.cs new file mode 100644 index 000000000..e8fe257ae --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserMpointRefundRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: alipay.user.mpoint.refund + /// + public class AlipayUserMpointRefundRequest : IAopRequest + { + /// + /// 支付宝会员积分退还接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "alipay.user.mpoint.refund"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantExpandShopBatchqueryRequest.cs b/AlipaySDKNet/Request/AntMerchantExpandShopBatchqueryRequest.cs new file mode 100644 index 000000000..a2ea4f731 --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantExpandShopBatchqueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.shop.batchquery + /// + public class AntMerchantExpandShopBatchqueryRequest : IAopRequest + { + /// + /// 分页查询线下门店 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.shop.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceCreateRequest.cs b/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceCreateRequest.cs new file mode 100644 index 000000000..4bd15186d --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.store.shopservice.create + /// + public class AntMerchantExpandStoreShopserviceCreateRequest : IAopRequest + { + /// + /// 场景服务创建 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.store.shopservice.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceDeleteRequest.cs b/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceDeleteRequest.cs new file mode 100644 index 000000000..e06dc83e6 --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceDeleteRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.store.shopservice.delete + /// + public class AntMerchantExpandStoreShopserviceDeleteRequest : IAopRequest + { + /// + /// 场景服务删除 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.store.shopservice.delete"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceModifyRequest.cs b/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceModifyRequest.cs new file mode 100644 index 000000000..26ffa7372 --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantExpandStoreShopserviceModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.expand.store.shopservice.modify + /// + public class AntMerchantExpandStoreShopserviceModifyRequest : IAopRequest + { + /// + /// 场景服务修改 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.expand.store.shopservice.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantOrderStoreBatchqueryRequest.cs b/AlipaySDKNet/Request/AntMerchantOrderStoreBatchqueryRequest.cs new file mode 100644 index 000000000..034f8e2f5 --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantOrderStoreBatchqueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.batchquery + /// + public class AntMerchantOrderStoreBatchqueryRequest : IAopRequest + { + /// + /// 商家端订单批量查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.batchquery"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantOrderStoreCreateRequest.cs b/AlipaySDKNet/Request/AntMerchantOrderStoreCreateRequest.cs new file mode 100644 index 000000000..6cc2e9264 --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantOrderStoreCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.create + /// + public class AntMerchantOrderStoreCreateRequest : IAopRequest + { + /// + /// 门店插件服务订单业务能力 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantOrderStoreQueryRequest.cs b/AlipaySDKNet/Request/AntMerchantOrderStoreQueryRequest.cs new file mode 100644 index 000000000..7caf5e228 --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantOrderStoreQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.query + /// + public class AntMerchantOrderStoreQueryRequest : IAopRequest + { + /// + /// 门店插件服务订单查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntMerchantOrderStoreSyncRequest.cs b/AlipaySDKNet/Request/AntMerchantOrderStoreSyncRequest.cs new file mode 100644 index 000000000..525b3813b --- /dev/null +++ b/AlipaySDKNet/Request/AntMerchantOrderStoreSyncRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: ant.merchant.order.store.sync + /// + public class AntMerchantOrderStoreSyncRequest : IAopRequest + { + /// + /// 门店插件服务订单状态同步 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "ant.merchant.order.store.sync"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AntfortuneQuotationResearchdataQueryRequest.cs b/AlipaySDKNet/Request/AntfortuneQuotationResearchdataQueryRequest.cs new file mode 100644 index 000000000..c74ab629b --- /dev/null +++ b/AlipaySDKNet/Request/AntfortuneQuotationResearchdataQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: antfortune.quotation.researchdata.query + /// + public class AntfortuneQuotationResearchdataQueryRequest : IAopRequest + { + /// + /// 金融信息平台研究数据查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "antfortune.quotation.researchdata.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AnttechAiCvOcrBusinesslicenseIdentifyRequest.cs b/AlipaySDKNet/Request/AnttechAiCvOcrBusinesslicenseIdentifyRequest.cs new file mode 100644 index 000000000..73cf15d4c --- /dev/null +++ b/AlipaySDKNet/Request/AnttechAiCvOcrBusinesslicenseIdentifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: anttech.ai.cv.ocr.businesslicense.identify + /// + public class AnttechAiCvOcrBusinesslicenseIdentifyRequest : IAopRequest + { + /// + /// AI认知服务营业执照ocr服务 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "anttech.ai.cv.ocr.businesslicense.identify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AnttechAiCvOcrVatinvoiceIdentifyRequest.cs b/AlipaySDKNet/Request/AnttechAiCvOcrVatinvoiceIdentifyRequest.cs new file mode 100644 index 000000000..5cd014cdd --- /dev/null +++ b/AlipaySDKNet/Request/AnttechAiCvOcrVatinvoiceIdentifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: anttech.ai.cv.ocr.vatinvoice.identify + /// + public class AnttechAiCvOcrVatinvoiceIdentifyRequest : IAopRequest + { + /// + /// AI认知服务增值税发票ocr识别 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "anttech.ai.cv.ocr.vatinvoice.identify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest.cs b/AlipaySDKNet/Request/AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest.cs new file mode 100644 index 000000000..59f353a87 --- /dev/null +++ b/AlipaySDKNet/Request/AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: anttech.blockchain.finance.mylogisticfinsys.message.publish + /// + public class AnttechBlockchainFinanceMylogisticfinsysMessagePublishRequest : IAopRequest + { + /// + /// 物流金融统一route接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "anttech.blockchain.finance.mylogisticfinsys.message.publish"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/KoubeiShopWxloginQueryRequest.cs b/AlipaySDKNet/Request/KoubeiShopWxloginQueryRequest.cs new file mode 100644 index 000000000..6646e90ca --- /dev/null +++ b/AlipaySDKNet/Request/KoubeiShopWxloginQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: koubei.shop.wxlogin.query + /// + public class KoubeiShopWxloginQueryRequest : IAopRequest + { + /// + /// 查询口碑轻店微信登录信息 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "koubei.shop.wxlogin.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayAmountQueryRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayAmountQueryRequest.cs new file mode 100644 index 000000000..a5394ab08 --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayAmountQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.amount.query + /// + public class MybankCreditSupplychainCreditpayAmountQueryRequest : IAopRequest + { + /// + /// 供应商-1688和赊呗融合-额度查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.amount.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBillQueryRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBillQueryRequest.cs new file mode 100644 index 000000000..354c5adde --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBillQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.bill.query + /// + public class MybankCreditSupplychainCreditpayBillQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-账单查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.bill.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyersignCreateRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyersignCreateRequest.cs new file mode 100644 index 000000000..f514d70c2 --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyersignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.buyersign.create + /// + public class MybankCreditSupplychainCreditpayBuyersignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-买家签约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.buyersign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyerunsignCreateRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyerunsignCreateRequest.cs new file mode 100644 index 000000000..7616ab799 --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyerunsignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.buyerunsign.create + /// + public class MybankCreditSupplychainCreditpayBuyerunsignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-买家解约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.buyerunsign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest.cs new file mode 100644 index 000000000..de9b22309 --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.buyerunsignadmit.query + /// + public class MybankCreditSupplychainCreditpayBuyerunsignadmitQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-买家解约准入查询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.buyerunsignadmit.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellersignCreateRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellersignCreateRequest.cs new file mode 100644 index 000000000..f110bf90a --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellersignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellersign.create + /// + public class MybankCreditSupplychainCreditpaySellersignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家签约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellersign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellersignadmitQueryRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellersignadmitQueryRequest.cs new file mode 100644 index 000000000..7992b405e --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellersignadmitQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellersignadmit.query + /// + public class MybankCreditSupplychainCreditpaySellersignadmitQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家签约准入咨询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellersignadmit.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellerunsignCreateRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellerunsignCreateRequest.cs new file mode 100644 index 000000000..6c8fdf8d2 --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellerunsignCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellerunsign.create + /// + public class MybankCreditSupplychainCreditpaySellerunsignCreateRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家解约 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellerunsign.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellerunsignQueryRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellerunsignQueryRequest.cs new file mode 100644 index 000000000..26d04fc5f --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpaySellerunsignQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.sellerunsign.query + /// + public class MybankCreditSupplychainCreditpaySellerunsignQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-卖家解约咨询 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.sellerunsign.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayTradeQueryRequest.cs b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayTradeQueryRequest.cs new file mode 100644 index 000000000..ea7b5e2ae --- /dev/null +++ b/AlipaySDKNet/Request/MybankCreditSupplychainCreditpayTradeQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: mybank.credit.supplychain.creditpay.trade.query + /// + public class MybankCreditSupplychainCreditpayTradeQueryRequest : IAopRequest + { + /// + /// 供应链-1688和赊呗融合-交易查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "mybank.credit.supplychain.creditpay.trade.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/ZhimaMerchantContractCommonConfirmRequest.cs b/AlipaySDKNet/Request/ZhimaMerchantContractCommonConfirmRequest.cs new file mode 100644 index 000000000..f2715baa4 --- /dev/null +++ b/AlipaySDKNet/Request/ZhimaMerchantContractCommonConfirmRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.common.confirm + /// + public class ZhimaMerchantContractCommonConfirmRequest : IAopRequest + { + /// + /// 芝麻约定应约接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.common.confirm"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/ZhimaMerchantContractCommonQueryRequest.cs b/AlipaySDKNet/Request/ZhimaMerchantContractCommonQueryRequest.cs new file mode 100644 index 000000000..d1f17ac6a --- /dev/null +++ b/AlipaySDKNet/Request/ZhimaMerchantContractCommonQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.common.query + /// + public class ZhimaMerchantContractCommonQueryRequest : IAopRequest + { + /// + /// 芝麻约定合约查询接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.common.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/ZhimaMerchantContractOfferModifyRequest.cs b/AlipaySDKNet/Request/ZhimaMerchantContractOfferModifyRequest.cs new file mode 100644 index 000000000..14873f4c8 --- /dev/null +++ b/AlipaySDKNet/Request/ZhimaMerchantContractOfferModifyRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.offer.modify + /// + public class ZhimaMerchantContractOfferModifyRequest : IAopRequest + { + /// + /// 芝麻约定发约单修改接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.offer.modify"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/ZhimaMerchantContractOfferQueryRequest.cs b/AlipaySDKNet/Request/ZhimaMerchantContractOfferQueryRequest.cs new file mode 100644 index 000000000..4e3cc12c6 --- /dev/null +++ b/AlipaySDKNet/Request/ZhimaMerchantContractOfferQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.offer.query + /// + public class ZhimaMerchantContractOfferQueryRequest : IAopRequest + { + /// + /// 芝麻约定查询发约单详情接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.offer.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/ZhimaMerchantContractOnofferQueryRequest.cs b/AlipaySDKNet/Request/ZhimaMerchantContractOnofferQueryRequest.cs new file mode 100644 index 000000000..15c17e9df --- /dev/null +++ b/AlipaySDKNet/Request/ZhimaMerchantContractOnofferQueryRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.onoffer.query + /// + public class ZhimaMerchantContractOnofferQueryRequest : IAopRequest + { + /// + /// 芝麻约定按发约单号查询合约接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.onoffer.query"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Request/ZhimaMerchantContractQuickCreateRequest.cs b/AlipaySDKNet/Request/ZhimaMerchantContractQuickCreateRequest.cs new file mode 100644 index 000000000..f1f6d8e14 --- /dev/null +++ b/AlipaySDKNet/Request/ZhimaMerchantContractQuickCreateRequest.cs @@ -0,0 +1,109 @@ +using System; +using Aop.Api.Domain; +using System.Collections.Generic; +using Aop.Api.Response; + +namespace Aop.Api.Request +{ + /// + /// AOP API: zhima.merchant.contract.quick.create + /// + public class ZhimaMerchantContractQuickCreateRequest : IAopRequest + { + /// + /// 芝麻约定快速发约接口 + /// + public string BizContent { get; set; } + + #region IAopRequest Members + private bool needEncrypt=false; + private string apiVersion = "1.0"; + private string terminalType; + private string terminalInfo; + private string prodCode; + private string notifyUrl; + private string returnUrl; + private AopObject bizModel; + + public void SetNeedEncrypt(bool needEncrypt){ + this.needEncrypt=needEncrypt; + } + + public bool GetNeedEncrypt(){ + + return this.needEncrypt; + } + + public void SetNotifyUrl(string notifyUrl){ + this.notifyUrl = notifyUrl; + } + + public string GetNotifyUrl(){ + return this.notifyUrl; + } + + public void SetReturnUrl(string returnUrl){ + this.returnUrl = returnUrl; + } + + public string GetReturnUrl(){ + return this.returnUrl; + } + + public void SetTerminalType(String terminalType){ + this.terminalType=terminalType; + } + + public string GetTerminalType(){ + return this.terminalType; + } + + public void SetTerminalInfo(String terminalInfo){ + this.terminalInfo=terminalInfo; + } + + public string GetTerminalInfo(){ + return this.terminalInfo; + } + + public void SetProdCode(String prodCode){ + this.prodCode=prodCode; + } + + public string GetProdCode(){ + return this.prodCode; + } + + public string GetApiName() + { + return "zhima.merchant.contract.quick.create"; + } + + public void SetApiVersion(string apiVersion){ + this.apiVersion=apiVersion; + } + + public string GetApiVersion(){ + return this.apiVersion; + } + + public IDictionary GetParameters() + { + AopDictionary parameters = new AopDictionary(); + parameters.Add("biz_content", this.BizContent); + return parameters; + } + + public AopObject GetBizModel() + { + return this.bizModel; + } + + public void SetBizModel(AopObject bizModel) + { + this.bizModel = bizModel; + } + + #endregion + } +} diff --git a/AlipaySDKNet/Response/AlipayCommerceAirCallcenterTradeApplyResponse.cs b/AlipaySDKNet/Response/AlipayCommerceAirCallcenterTradeApplyResponse.cs new file mode 100644 index 000000000..f8445f019 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayCommerceAirCallcenterTradeApplyResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayCommerceAirCallcenterTradeApplyResponse. + /// + public class AlipayCommerceAirCallcenterTradeApplyResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AlipayCommerceMedicalCardQueryResponse.cs b/AlipaySDKNet/Response/AlipayCommerceMedicalCardQueryResponse.cs index 623a81348..6b2942598 100644 --- a/AlipaySDKNet/Response/AlipayCommerceMedicalCardQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayCommerceMedicalCardQueryResponse.cs @@ -16,6 +16,12 @@ public class AlipayCommerceMedicalCardQueryResponse : AopResponse [XmlElement("agreement_no")] public string AgreementNo { get; set; } + /// + /// 当前绑卡状态: BINDED(已绑定) NOT_BIND(未绑定) OTHER_BIND(不同账号绑卡) + /// + [XmlElement("bind_status")] + public string BindStatus { get; set; } + /// /// 买家支付宝账号,将用*号屏蔽部分内容 /// @@ -47,7 +53,7 @@ public class AlipayCommerceMedicalCardQueryResponse : AopResponse public string City { get; set; } /// - /// 一个支付宝账号绑定了多张医保卡,除本人意外的卡信息 + /// 一个支付宝账号绑定了多张医保卡,除本人以外的卡信息 /// [XmlArray("extend_cards")] [XmlArrayItem("extend_medical_card")] @@ -83,6 +89,18 @@ public class AlipayCommerceMedicalCardQueryResponse : AopResponse [XmlElement("medical_card_type")] public string MedicalCardType { get; set; } + /// + /// bind_satus= OTHER_BIND情况下输出,买家支付宝账号,将用*号屏蔽部分内容 + /// + [XmlElement("other_user_logon_id")] + public string OtherUserLogonId { get; set; } + + /// + /// bind_satus= OTHER_BIND情况下输出, "off"代表其他账户已注销 "on"代表其他账户未注销 + /// + [XmlElement("other_user_status")] + public string OtherUserStatus { get; set; } + /// /// 医保卡持卡人证件号码(脱敏) /// diff --git a/AlipaySDKNet/Response/AlipayCommerceTransportTaxiDriverSendResponse.cs b/AlipaySDKNet/Response/AlipayCommerceTransportTaxiDriverSendResponse.cs new file mode 100644 index 000000000..b29b20985 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayCommerceTransportTaxiDriverSendResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayCommerceTransportTaxiDriverSendResponse. + /// + public class AlipayCommerceTransportTaxiDriverSendResponse : AopResponse + { + /// + /// 司机身份证号 + /// + [XmlElement("driver_cert_no")] + public string DriverCertNo { get; set; } + + /// + /// 错误码 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误消息 + /// + [XmlElement("error_message")] + public string ErrorMessage { get; set; } + + /// + /// 扩展信息 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayCommerceTransportVehicleownerTransdataSyncResponse.cs b/AlipaySDKNet/Response/AlipayCommerceTransportVehicleownerTransdataSyncResponse.cs new file mode 100644 index 000000000..c132b7282 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayCommerceTransportVehicleownerTransdataSyncResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayCommerceTransportVehicleownerTransdataSyncResponse. + /// + public class AlipayCommerceTransportVehicleownerTransdataSyncResponse : AopResponse + { + /// + /// 数据执行行数 + /// + [XmlElement("excute_lines")] + public string ExcuteLines { get; set; } + + /// + /// 执行结果 + /// + [XmlElement("result")] + public string Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualconfigGetResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualconfigGetResponse.cs new file mode 100644 index 000000000..0b4702557 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualconfigGetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigGetResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualconfigGetResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleConfigGetResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualconfigSetResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualconfigSetResponse.cs new file mode 100644 index 000000000..4981f3434 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualconfigSetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualconfigSetResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualconfigSetResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleConfigResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtaskAddResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtaskAddResponse.cs new file mode 100644 index 000000000..f77fc8722 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtaskAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskAddResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtaskAddResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtaskQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtaskQueryResponse.cs new file mode 100644 index 000000000..f5aef1a92 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtaskQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtaskQueryResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtaskQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleWorkResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse.cs new file mode 100644 index 000000000..e1e7501de --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeAddResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse.cs new file mode 100644 index 000000000..54d0047a6 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse. + /// + public class AlipayDataAiserviceCloudbusSchedualtasktimeQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleTimeResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletasklistQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletasklistQueryResponse.cs new file mode 100644 index 000000000..547bc687e --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletasklistQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletasklistQueryResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletasklistQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleListResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskodAddResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskodAddResponse.cs new file mode 100644 index 000000000..f88ccd40e --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskodAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodAddResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskodAddResponse : AopResponse + { + /// + /// 任务结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskodQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskodQueryResponse.cs new file mode 100644 index 000000000..5239a5381 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskodQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskodQueryResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskodQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleOdResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse.cs new file mode 100644 index 000000000..ec7e93c36 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftAddResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public CloudbusCommonResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse.cs new file mode 100644 index 000000000..cba64cf54 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletaskshiftQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleShiftResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletriptimeGetResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletriptimeGetResponse.cs new file mode 100644 index 000000000..bd577b8d5 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusScheduletriptimeGetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusScheduletriptimeGetResponse. + /// + public class AlipayDataAiserviceCloudbusScheduletriptimeGetResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public ScheduleTripResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataDataserviceAdDataQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataDataserviceAdDataQueryResponse.cs new file mode 100644 index 000000000..bb51c338a --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataDataserviceAdDataQueryResponse.cs @@ -0,0 +1,20 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataDataserviceAdDataQueryResponse. + /// + public class AlipayDataDataserviceAdDataQueryResponse : AopResponse + { + /// + /// 汇总结果数据列表 + /// + [XmlArray("data_list")] + [XmlArrayItem("data_detail")] + public List DataList { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayEbppDetectReportQueryResponse.cs b/AlipaySDKNet/Response/AlipayEbppDetectReportQueryResponse.cs index b6b9d155e..ee1e3fcf2 100644 --- a/AlipaySDKNet/Response/AlipayEbppDetectReportQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayEbppDetectReportQueryResponse.cs @@ -9,27 +9,51 @@ namespace Aop.Api.Response public class AlipayEbppDetectReportQueryResponse : AopResponse { /// - /// 检测是否完成。true-是,false-否 + /// 注意:该字段废弃。 /// [XmlElement("audit_done")] public bool AuditDone { get; set; } /// - /// 检测是否通过。true-通过,false-不通过 + /// 注意:该字段废弃。 /// [XmlElement("audit_pass")] public bool AuditPass { get; set; } /// - /// 当audit_pass=false时,表示错误细节 + /// 检测结果详情。JSON数组字符串。列出每个检测项的检测详情。 + /// + [XmlElement("detect_detail")] + public string DetectDetail { get; set; } + + /// + /// 检测状态. * 0-未查到报告(检测未开始或检测异常) * 1-检测中 * 2-检测结束并生成检测报告 + /// + [XmlElement("detect_status")] + public long DetectStatus { get; set; } + + /// + /// 注意:该字段废弃 /// [XmlElement("err_msg")] public string ErrMsg { get; set; } /// - /// 外部业务标识。和入参一致。 + /// 注意:该字段废弃。 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } + + /// + /// 整体检测是否通过. 只有当detectStatus=2时才会有值. * true-检测通过 * false-检测不通过 + /// + [XmlElement("pass")] + public bool Pass { get; set; } + + /// + /// 检测结果一句话描述 + /// + [XmlElement("summary")] + public string Summary { get; set; } } } diff --git a/AlipaySDKNet/Response/AlipayEbppInspectNotifyResponse.cs b/AlipaySDKNet/Response/AlipayEbppInspectNotifyResponse.cs new file mode 100644 index 000000000..d46799bb0 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayEbppInspectNotifyResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayEbppInspectNotifyResponse. + /// + public class AlipayEbppInspectNotifyResponse : AopResponse + { + /// + /// 结果同步状态 + /// + [XmlElement("status")] + public string Status { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayInsSceneDxDataQueryResponse.cs b/AlipaySDKNet/Response/AlipayInsSceneDxDataQueryResponse.cs new file mode 100644 index 000000000..5a78460bd --- /dev/null +++ b/AlipaySDKNet/Response/AlipayInsSceneDxDataQueryResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayInsSceneDxDataQueryResponse. + /// + public class AlipayInsSceneDxDataQueryResponse : AopResponse + { + /// + /// 返回dx数据 + /// + [XmlElement("data")] + public string Data { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayInsSceneSellerDataQueryResponse.cs b/AlipaySDKNet/Response/AlipayInsSceneSellerDataQueryResponse.cs new file mode 100644 index 000000000..14587f864 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayInsSceneSellerDataQueryResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayInsSceneSellerDataQueryResponse. + /// + public class AlipayInsSceneSellerDataQueryResponse : AopResponse + { + /// + /// 返回数据结果 + /// + [XmlElement("data")] + public string Data { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMarketingCampaignCommoneventApplyResponse.cs b/AlipaySDKNet/Response/AlipayMarketingCampaignCommoneventApplyResponse.cs new file mode 100644 index 000000000..e6a14628e --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMarketingCampaignCommoneventApplyResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMarketingCampaignCommoneventApplyResponse. + /// + public class AlipayMarketingCampaignCommoneventApplyResponse : AopResponse + { + /// + /// 与event关联的返回结果 + /// + [XmlElement("data")] + public string Data { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeMemberremainingQueryResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeMemberremainingQueryResponse.cs new file mode 100644 index 000000000..071b48f09 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeMemberremainingQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeMemberremainingQueryResponse. + /// + public class AlipayMerchantPayforprivilegeMemberremainingQueryResponse : AopResponse + { + /// + /// 余额中未使用的权益金部分 + /// + [XmlElement("unused_benefit")] + public string UnusedBenefit { get; set; } + + /// + /// 余额中未使用的本金部分 + /// + [XmlElement("unused_principal")] + public string UnusedPrincipal { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeMerchantremainingQueryResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeMerchantremainingQueryResponse.cs new file mode 100644 index 000000000..822491009 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeMerchantremainingQueryResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeMerchantremainingQueryResponse. + /// + public class AlipayMerchantPayforprivilegeMerchantremainingQueryResponse : AopResponse + { + /// + /// 消费者未使用的权益金部分 + /// + [XmlElement("unused_benefit")] + public string UnusedBenefit { get; set; } + + /// + /// 消费者尚未使用的本金部分 + /// + [XmlElement("unused_principal")] + public string UnusedPrincipal { get; set; } + + /// + /// 消费者已使用的权益金部分 + /// + [XmlElement("used_benefit")] + public string UsedBenefit { get; set; } + + /// + /// 消费者已使用的本金部分 + /// + [XmlElement("used_principal")] + public string UsedPrincipal { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePayCreateResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePayCreateResponse.cs new file mode 100644 index 000000000..cbf0696a2 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePayCreateResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePayCreateResponse. + /// + public class AlipayMerchantPayforprivilegePayCreateResponse : AopResponse + { + /// + /// 用于唤起资金授权支付的orderStr参数 + /// + [XmlElement("order_str")] + public string OrderStr { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeProfileQueryResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeProfileQueryResponse.cs new file mode 100644 index 000000000..0bb9109a1 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeProfileQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeProfileQueryResponse. + /// + public class AlipayMerchantPayforprivilegeProfileQueryResponse : AopResponse + { + /// + /// 充享惠卡模板设置 + /// + [XmlElement("card_template_config")] + public PayForPrivilegeCardTemplateConfig CardTemplateConfig { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeProfileSetResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeProfileSetResponse.cs new file mode 100644 index 000000000..c0230b1a0 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeProfileSetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeProfileSetResponse. + /// + public class AlipayMerchantPayforprivilegeProfileSetResponse : AopResponse + { + /// + /// 充享惠卡模板设置 + /// + [XmlElement("card_template_config")] + public PayForPrivilegeCardTemplateConfig CardTemplateConfig { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanCreateResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanCreateResponse.cs new file mode 100644 index 000000000..297b08767 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanCreateResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanCreateResponse. + /// + public class AlipayMerchantPayforprivilegePromotionplanCreateResponse : AopResponse + { + /// + /// 充享惠方案,当前接口创建的充享惠方案 + /// + [XmlElement("promotion_plan")] + public PayForPrivilegePromotionPlanInfo PromotionPlan { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanModifyResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanModifyResponse.cs new file mode 100644 index 000000000..e39fe0d58 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanModifyResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanModifyResponse. + /// + public class AlipayMerchantPayforprivilegePromotionplanModifyResponse : AopResponse + { + /// + /// 充值方案信息,返回修改后的充值方案信息 + /// + [XmlElement("promotion_plan")] + public PayForPrivilegePromotionPlanInfo PromotionPlan { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanQueryResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanQueryResponse.cs new file mode 100644 index 000000000..44bbcc854 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegePromotionplanQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegePromotionplanQueryResponse. + /// + public class AlipayMerchantPayforprivilegePromotionplanQueryResponse : AopResponse + { + /// + /// 充享惠方案信息,返回之前创建的充享惠方案信息,方案不存在或者无权限返回空 + /// + [XmlElement("promotion_plan")] + public PayForPrivilegePromotionPlanInfo PromotionPlan { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUselogBatchqueryResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUselogBatchqueryResponse.cs new file mode 100644 index 000000000..5392b6419 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUselogBatchqueryResponse.cs @@ -0,0 +1,20 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeUselogBatchqueryResponse. + /// + public class AlipayMerchantPayforprivilegeUselogBatchqueryResponse : AopResponse + { + /// + /// 充享惠使用记录 + /// + [XmlArray("use_log_list")] + [XmlArrayItem("pay_for_privilege_recharge_card_use_log")] + public List UseLogList { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUserrelationCreateResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUserrelationCreateResponse.cs new file mode 100644 index 000000000..97dd1b913 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUserrelationCreateResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationCreateResponse. + /// + public class AlipayMerchantPayforprivilegeUserrelationCreateResponse : AopResponse + { + /// + /// 充享惠业务用户与商户关系 + /// + [XmlElement("member_info")] + public PayForPrivilegeUserRelation MemberInfo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUserrelationQueryResponse.cs b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUserrelationQueryResponse.cs new file mode 100644 index 000000000..710b7a53a --- /dev/null +++ b/AlipaySDKNet/Response/AlipayMerchantPayforprivilegeUserrelationQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayMerchantPayforprivilegeUserrelationQueryResponse. + /// + public class AlipayMerchantPayforprivilegeUserrelationQueryResponse : AopResponse + { + /// + /// 充享惠业务用户与商户的关系 + /// + [XmlElement("member_info")] + public PayForPrivilegeUserRelation MemberInfo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayOpenDafBatchqueryResponse.cs b/AlipaySDKNet/Response/AlipayOpenDafBatchqueryResponse.cs new file mode 100644 index 000000000..48f0c43ff --- /dev/null +++ b/AlipaySDKNet/Response/AlipayOpenDafBatchqueryResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOpenDafBatchqueryResponse. + /// + public class AlipayOpenDafBatchqueryResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs b/AlipaySDKNet/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs index 51afc7bd2..d91a45288 100644 --- a/AlipaySDKNet/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayOpenMiniInnerversionUploadstatusQueryResponse.cs @@ -26,12 +26,24 @@ public class AlipayOpenMiniInnerversionUploadstatusQueryResponse : AopResponse [XmlElement("build_status")] public string BuildStatus { get; set; } + /// + /// 构建日志地址 + /// + [XmlElement("log_url")] + public string LogUrl { get; set; } + /// /// 是否需要轮询 /// [XmlElement("need_rotation")] public string NeedRotation { get; set; } + /// + /// 构建的结果地址 + /// + [XmlElement("result_url")] + public string ResultUrl { get; set; } + /// /// 创建版本结果 /// diff --git a/AlipaySDKNet/Response/AlipayPayCodecApplepayCredentialsGetResponse.cs b/AlipaySDKNet/Response/AlipayPayCodecApplepayCredentialsGetResponse.cs new file mode 100644 index 000000000..ea1cea285 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayPayCodecApplepayCredentialsGetResponse.cs @@ -0,0 +1,26 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecApplepayCredentialsGetResponse. + /// + public class AlipayPayCodecApplepayCredentialsGetResponse : AopResponse + { + /// + /// 加密后的码列表。 {List of Credential objects} + /// + [XmlArray("credentials")] + [XmlArrayItem("payment_credential")] + public List Credentials { get; set; } + + /// + /// 结果。 statusCode:Status code used to indicate an error. If omitted, assumed to be 200 (success);subStatusCode:Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions;statusMessage:Not parsed programmatically. Example "Downstream system offline". + /// + [XmlElement("response_header")] + public CredentialsResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayPayCodecApplepayEstablishSetResponse.cs b/AlipaySDKNet/Response/AlipayPayCodecApplepayEstablishSetResponse.cs new file mode 100644 index 000000000..39cd15543 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayPayCodecApplepayEstablishSetResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecApplepayEstablishSetResponse. + /// + public class AlipayPayCodecApplepayEstablishSetResponse : AopResponse + { + /// + /// 结果。 statusCode:Status code used to indicate an error. If omitted, assumed to be 200 (success);subStatusCode:Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions;statusMessage:Not parsed programmatically. Example "Downstream system offline". + /// + [XmlElement("response_header")] + public EstablishResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipaySecurityProdTamGetResponse.cs b/AlipaySDKNet/Response/AlipaySecurityProdTamGetResponse.cs index d72b3d8b1..597548f5a 100644 --- a/AlipaySDKNet/Response/AlipaySecurityProdTamGetResponse.cs +++ b/AlipaySDKNet/Response/AlipaySecurityProdTamGetResponse.cs @@ -20,6 +20,12 @@ public class AlipaySecurityProdTamGetResponse : AopResponse [XmlElement("encrypted_ta_data")] public string EncryptedTaData { get; set; } + /// + /// ext_info+不唯一+补充说明协议中不明确的信息+无枚举值 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + /// /// return_code(错误码)+不唯一+用于响应OEM厂商服务端的请求+是枚举值,000000含义为成功+生成方式由具体执行情况确定+其它枚举值进一步约定 /// @@ -31,5 +37,17 @@ public class AlipaySecurityProdTamGetResponse : AopResponse /// [XmlElement("return_desc")] public string ReturnDesc { get; set; } + + /// + /// ta_hash+不唯一+ta源文件进行SHA-256哈希计算再进行BASE64编码得到的哈希值字符串信息。 + /// + [XmlElement("ta_hash")] + public string TaHash { get; set; } + + /// + /// ext_info+不唯一+JSON形式的map,包含关于ta摘要算法等信息+枚举值:BASE64_OVER_SHA256;BASE64_OVER_SHA512;BASE64_OVER_SM3+支付宝服务端返回TA哈希时放在入参里+缺省值为BASE64_OVER_SHA256 + /// + [XmlElement("ta_info")] + public string TaInfo { get; set; } } } diff --git a/AlipaySDKNet/Response/AlipaySocialAntforestTreeSyncResponse.cs b/AlipaySDKNet/Response/AlipaySocialAntforestTreeSyncResponse.cs new file mode 100644 index 000000000..972792eee --- /dev/null +++ b/AlipaySDKNet/Response/AlipaySocialAntforestTreeSyncResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialAntforestTreeSyncResponse. + /// + public class AlipaySocialAntforestTreeSyncResponse : AopResponse + { + /// + /// 同步是否成功 + /// + [XmlElement("synced")] + public bool Synced { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipaySocialAntiepSceneSendResponse.cs b/AlipaySDKNet/Response/AlipaySocialAntiepSceneSendResponse.cs new file mode 100644 index 000000000..38dae236d --- /dev/null +++ b/AlipaySDKNet/Response/AlipaySocialAntiepSceneSendResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialAntiepSceneSendResponse. + /// + public class AlipaySocialAntiepSceneSendResponse : AopResponse + { + /// + /// 上报行为的结果描述 + /// + [XmlElement("biz_desc")] + public string BizDesc { get; set; } + + /// + /// 上报行为的处理结果码 + /// + [XmlElement("biz_result_code")] + public string BizResultCode { get; set; } + + /// + /// 上报行为的结果如果是失败时,是否可重试, 如果biz_success=false,则biz_retriable=true时代表需要重试的异常, 如果biz_retriable=false时,则代表不能重试,含义可分为两种:1、不需要重试的异常,比如重试的请求被幂等了、2、或者是即使重试了也成功不了的异常,比如参数缺失、配置缺失等,这种错误需要在验证期间就避免掉,验证无误了再上线! + /// + [XmlElement("biz_retriable")] + public bool BizRetriable { get; set; } + + /// + /// 上报行为的处理结果是否成功,如果biz_success=true,则代表上报成功,如果biz_success=false,需看biz_retriable的值是true代表可重试,biz_retriable为false时则不可重试 + /// + [XmlElement("biz_success")] + public bool BizSuccess { get; set; } + + /// + /// 行为上报所需处理模块的处理结果。 比如:一次行为上报需要处理:统计、任务1、任务2,三个模块,则key为每个模块的标识,value为每个模块的处理结果,value有: 1、success:模块执行结果是否成功,如果success为false,则代表执行失败,不能立即拿到该模块的执行结果,但无需重试,只要外面的success为true,这里会保证最终一致性, 2、code:结果码 3、desc:结果描述 + /// + [XmlElement("module_result_map")] + public string ModuleResultMap { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceAddResponse.cs b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceAddResponse.cs new file mode 100644 index 000000000..cbfbcf242 --- /dev/null +++ b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceAddResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceAddResponse. + /// + public class AlipaySocialBaseQuestInstanceAddResponse : AopResponse + { + /// + /// 小目标实例模型 + /// + [XmlElement("instance")] + public QuestInstanceDO Instance { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceModifyResponse.cs b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceModifyResponse.cs new file mode 100644 index 000000000..7828f74ab --- /dev/null +++ b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceModifyResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceModifyResponse. + /// + public class AlipaySocialBaseQuestInstanceModifyResponse : AopResponse + { + /// + /// 返回用户添加小目标实例 + /// + [XmlElement("instance")] + public QuestInstanceDO Instance { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceQueryResponse.cs b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceQueryResponse.cs new file mode 100644 index 000000000..045315f55 --- /dev/null +++ b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceQueryResponse.cs @@ -0,0 +1,20 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceQueryResponse. + /// + public class AlipaySocialBaseQuestInstanceQueryResponse : AopResponse + { + /// + /// 返回请求小目标实例集合 + /// + [XmlArray("instances")] + [XmlArrayItem("quest_instance_d_o")] + public List Instances { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceSubmitResponse.cs b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceSubmitResponse.cs new file mode 100644 index 000000000..553d68f1b --- /dev/null +++ b/AlipaySDKNet/Response/AlipaySocialBaseQuestInstanceSubmitResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipaySocialBaseQuestInstanceSubmitResponse. + /// + public class AlipaySocialBaseQuestInstanceSubmitResponse : AopResponse + { + /// + /// 今日打卡次数 + /// + [XmlElement("daily_count")] + public long DailyCount { get; set; } + + /// + /// 打卡总天数 + /// + [XmlElement("mark_amount")] + public long MarkAmount { get; set; } + + /// + /// 打卡时间戳 + /// + [XmlElement("mark_time")] + public long MarkTime { get; set; } + + /// + /// 打卡成功文案 + /// + [XmlElement("mark_tip")] + public string MarkTip { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayTradeFastpayRefundQueryResponse.cs b/AlipaySDKNet/Response/AlipayTradeFastpayRefundQueryResponse.cs index e7d72306c..ce4469876 100644 --- a/AlipaySDKNet/Response/AlipayTradeFastpayRefundQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayTradeFastpayRefundQueryResponse.cs @@ -71,7 +71,7 @@ public class AlipayTradeFastpayRefundQueryResponse : AopResponse public string RefundChargeAmount { get; set; } /// - /// 本次退款使用的资金渠道; 默认不返回该信息,需与支付宝约定后配置返回; + /// 本次退款使用的资金渠道; 默认不返回该信息,需与支付宝约定后配置,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("refund_detail_item_list")] [XmlArrayItem("trade_fund_bill")] diff --git a/AlipaySDKNet/Response/AlipayTradePayResponse.cs b/AlipaySDKNet/Response/AlipayTradePayResponse.cs index d15cbf560..87d96f081 100644 --- a/AlipaySDKNet/Response/AlipayTradePayResponse.cs +++ b/AlipaySDKNet/Response/AlipayTradePayResponse.cs @@ -89,13 +89,13 @@ public class AlipayTradePayResponse : AopResponse public string DiscountAmount { get; set; } /// - /// 本次交易支付所使用的单品券优惠的商品优惠信息 + /// 本次交易支付所使用的单品券优惠的商品优惠信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlElement("discount_goods_detail")] public string DiscountGoodsDetail { get; set; } /// - /// 交易支付使用的资金渠道 + /// 交易支付使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("fund_bill_list")] [XmlArrayItem("trade_fund_bill")] @@ -210,7 +210,7 @@ public class AlipayTradePayResponse : AopResponse public string TransPayRate { get; set; } /// - /// 本交易支付时使用的所有优惠券信息 + /// 本交易支付时使用的所有优惠券信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlArray("voucher_detail_list")] [XmlArrayItem("voucher_detail")] diff --git a/AlipaySDKNet/Response/AlipayTradeQueryResponse.cs b/AlipaySDKNet/Response/AlipayTradeQueryResponse.cs index bfae0f5dc..7f140f2d2 100644 --- a/AlipaySDKNet/Response/AlipayTradeQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayTradeQueryResponse.cs @@ -83,7 +83,7 @@ public class AlipayTradeQueryResponse : AopResponse public string DiscountAmount { get; set; } /// - /// 本次交易支付所使用的单品券优惠的商品优惠信息 + /// 本次交易支付所使用的单品券优惠的商品优惠信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlElement("discount_goods_detail")] public string DiscountGoodsDetail { get; set; } @@ -95,7 +95,7 @@ public class AlipayTradeQueryResponse : AopResponse public string ExtInfos { get; set; } /// - /// 交易支付使用的资金渠道 + /// 交易支付使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("fund_bill_list")] [XmlArrayItem("trade_fund_bill")] @@ -222,7 +222,7 @@ public class AlipayTradeQueryResponse : AopResponse public string TradeNo { get; set; } /// - /// 返回的交易结算信息,包含分账、补差等信息 + /// 返回的交易结算信息,包含分账、补差等信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlElement("trade_settle_info")] public TradeSettleInfo TradeSettleInfo { get; set; } @@ -246,7 +246,7 @@ public class AlipayTradeQueryResponse : AopResponse public string TransPayRate { get; set; } /// - /// 本交易支付时使用的所有优惠券信息 + /// 本交易支付时使用的所有优惠券信息。 只有在query_options中指定时才返回该字段信息。 /// [XmlArray("voucher_detail_list")] [XmlArrayItem("voucher_detail")] diff --git a/AlipaySDKNet/Response/AlipayTradeRefundResponse.cs b/AlipaySDKNet/Response/AlipayTradeRefundResponse.cs index ace572ea1..683b2f833 100644 --- a/AlipaySDKNet/Response/AlipayTradeRefundResponse.cs +++ b/AlipaySDKNet/Response/AlipayTradeRefundResponse.cs @@ -77,7 +77,7 @@ public class AlipayTradeRefundResponse : AopResponse public string RefundCurrency { get; set; } /// - /// 退款使用的资金渠道 + /// 退款使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。 /// [XmlArray("refund_detail_item_list")] [XmlArrayItem("trade_fund_bill")] diff --git a/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleCreateResponse.cs b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleCreateResponse.cs new file mode 100644 index 000000000..ba0bdc2a0 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleCreateResponse.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayProvisioningbundleCreateResponse. + /// + public class AlipayUserApplepayProvisioningbundleCreateResponse : AopResponse + { + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// ApplePay公用响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleEffectResponse.cs b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleEffectResponse.cs new file mode 100644 index 000000000..cf7e31537 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleEffectResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayProvisioningbundleEffectResponse. + /// + public class AlipayUserApplepayProvisioningbundleEffectResponse : AopResponse + { + /// + /// ApplePay公用响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs new file mode 100644 index 000000000..f4c3ced30 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayProvisioningbundleQueryResponse. + /// + public class AlipayUserApplepayProvisioningbundleQueryResponse : AopResponse + { + /// + /// 卡模型 + /// + [XmlElement("provisioning_bundle")] + public OpenApiProvisioningBundle ProvisioningBundle { get; set; } + + /// + /// 响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs b/AlipaySDKNet/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs index 426d1bf2a..020982ec0 100644 --- a/AlipaySDKNet/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayUserCertifyIdentifyInfoQueryResponse.cs @@ -39,6 +39,12 @@ public class AlipayUserCertifyIdentifyInfoQueryResponse : AopResponse [XmlElement("certify_time")] public string CertifyTime { get; set; } + /// + /// havana id + /// + [XmlElement("havana_id")] + public string HavanaId { get; set; } + /// /// T表示认证,F表示未认证 /// diff --git a/AlipaySDKNet/Response/AlipayUserCertifyOpenQueryResponse.cs b/AlipaySDKNet/Response/AlipayUserCertifyOpenQueryResponse.cs index 4f4ce7324..59dba4db3 100644 --- a/AlipaySDKNet/Response/AlipayUserCertifyOpenQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayUserCertifyOpenQueryResponse.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Response /// public class AlipayUserCertifyOpenQueryResponse : AopResponse { + /// + /// 认证错误原因,扩展字段,默认不返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + /// /// 认证的主体信息,一般的认证场景返回为空 /// diff --git a/AlipaySDKNet/Response/AlipayUserMpointAuthbasePayResponse.cs b/AlipaySDKNet/Response/AlipayUserMpointAuthbasePayResponse.cs new file mode 100644 index 000000000..e1c58bcde --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserMpointAuthbasePayResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointAuthbasePayResponse. + /// + public class AlipayUserMpointAuthbasePayResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AlipayUserMpointAuthbaseQueryResponse.cs b/AlipaySDKNet/Response/AlipayUserMpointAuthbaseQueryResponse.cs new file mode 100644 index 000000000..cf40273ce --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserMpointAuthbaseQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointAuthbaseQueryResponse. + /// + public class AlipayUserMpointAuthbaseQueryResponse : AopResponse + { + /// + /// 支付宝用户的蚂蚁会员积分余额 + /// + [XmlElement("balance")] + public long Balance { get; set; } + + /// + /// 支付宝用户的蚂蚁会员等级 + /// + [XmlElement("grade")] + public string Grade { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserMpointPayResponse.cs b/AlipaySDKNet/Response/AlipayUserMpointPayResponse.cs new file mode 100644 index 000000000..72b9a4ed4 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserMpointPayResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointPayResponse. + /// + public class AlipayUserMpointPayResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AlipayUserMpointQueryResponse.cs b/AlipaySDKNet/Response/AlipayUserMpointQueryResponse.cs new file mode 100644 index 000000000..80c0b7fc8 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserMpointQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointQueryResponse. + /// + public class AlipayUserMpointQueryResponse : AopResponse + { + /// + /// 支付宝用户的蚂蚁会员积分余额 + /// + [XmlElement("balance")] + public long Balance { get; set; } + + /// + /// 支付宝用户的蚂蚁会员等级 + /// + [XmlElement("grade")] + public string Grade { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserMpointRefundResponse.cs b/AlipaySDKNet/Response/AlipayUserMpointRefundResponse.cs new file mode 100644 index 000000000..724b6fc15 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserMpointRefundResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserMpointRefundResponse. + /// + public class AlipayUserMpointRefundResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AlipayZdataserviceUnidataQueryResponse.cs b/AlipaySDKNet/Response/AlipayZdataserviceUnidataQueryResponse.cs deleted file mode 100644 index 5d6357893..000000000 --- a/AlipaySDKNet/Response/AlipayZdataserviceUnidataQueryResponse.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Response -{ - /// - /// AlipayZdataserviceUnidataQueryResponse. - /// - public class AlipayZdataserviceUnidataQueryResponse : AopResponse - { - /// - /// 查询结果集,统一用string方式返回 - /// - [XmlElement("query_result")] - public string QueryResult { get; set; } - - /// - /// 查询是否成功具体描述 - /// - [XmlElement("result_code")] - public string ResultCode { get; set; } - - /// - /// 查询是否成功 - /// - [XmlElement("success")] - public string Success { get; set; } - } -} diff --git a/AlipaySDKNet/Response/AntMerchantExpandShopBatchqueryResponse.cs b/AlipaySDKNet/Response/AntMerchantExpandShopBatchqueryResponse.cs new file mode 100644 index 000000000..4eca6f375 --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantExpandShopBatchqueryResponse.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandShopBatchqueryResponse. + /// + public class AntMerchantExpandShopBatchqueryResponse : AopResponse + { + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public long PageSize { get; set; } + + /// + /// 线下门店的列表;有可能为空 + /// + [XmlArray("shops")] + [XmlArrayItem("simple_shop_info")] + public List Shops { get; set; } + + /// + /// 按照分页数量拆分,分解出来的页数 + /// + [XmlElement("total_page")] + public long TotalPage { get; set; } + + /// + /// 所有线下门店数量 + /// + [XmlElement("total_size")] + public long TotalSize { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceCreateResponse.cs b/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceCreateResponse.cs new file mode 100644 index 000000000..92b16e2d8 --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceCreateResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandStoreShopserviceCreateResponse. + /// + public class AntMerchantExpandStoreShopserviceCreateResponse : AopResponse + { + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 场景服务ID + /// + [XmlElement("shop_service_id")] + public string ShopServiceId { get; set; } + + /// + /// 规格ID + /// + [XmlElement("sku_id")] + public string SkuId { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceDeleteResponse.cs b/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceDeleteResponse.cs new file mode 100644 index 000000000..21d4cd4ae --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceDeleteResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandStoreShopserviceDeleteResponse. + /// + public class AntMerchantExpandStoreShopserviceDeleteResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceModifyResponse.cs b/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceModifyResponse.cs new file mode 100644 index 000000000..b364d6e4b --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantExpandStoreShopserviceModifyResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantExpandStoreShopserviceModifyResponse. + /// + public class AntMerchantExpandStoreShopserviceModifyResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AntMerchantOrderStoreBatchqueryResponse.cs b/AlipaySDKNet/Response/AntMerchantOrderStoreBatchqueryResponse.cs new file mode 100644 index 000000000..a4eb71a6d --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantOrderStoreBatchqueryResponse.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreBatchqueryResponse. + /// + public class AntMerchantOrderStoreBatchqueryResponse : AopResponse + { + /// + /// 是否有下一页 + /// + [XmlElement("has_more")] + public bool HasMore { get; set; } + + /// + /// 订单列表 + /// + [XmlArray("order_list")] + [XmlArrayItem("store_order_d_t_o")] + public List OrderList { get; set; } + + /// + /// 当前页码 + /// + [XmlElement("page_no")] + public long PageNo { get; set; } + + /// + /// 分页数量 + /// + [XmlElement("page_size")] + public string PageSize { get; set; } + + /// + /// 查询总数量 + /// + [XmlElement("total")] + public long Total { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AntMerchantOrderStoreCreateResponse.cs b/AlipaySDKNet/Response/AntMerchantOrderStoreCreateResponse.cs new file mode 100644 index 000000000..fce159356 --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantOrderStoreCreateResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreCreateResponse. + /// + public class AntMerchantOrderStoreCreateResponse : AopResponse + { + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 订单的状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AntMerchantOrderStoreQueryResponse.cs b/AlipaySDKNet/Response/AntMerchantOrderStoreQueryResponse.cs new file mode 100644 index 000000000..9be5222ee --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantOrderStoreQueryResponse.cs @@ -0,0 +1,69 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreQueryResponse. + /// + public class AntMerchantOrderStoreQueryResponse : AopResponse + { + /// + /// 买家id + /// + [XmlElement("buyer_id")] + public string BuyerId { get; set; } + + /// + /// 联系电话 + /// + [XmlElement("contact_phone")] + public string ContactPhone { get; set; } + + /// + /// 业务场景对应的扩展字段 + /// + [XmlArray("ext")] + [XmlArrayItem("order_ext")] + public List Ext { get; set; } + + /// + /// 订单相关的商品信息 + /// + [XmlArray("goods_info_list")] + [XmlArrayItem("store_order_good")] + public List GoodsInfoList { get; set; } + + /// + /// 订单的描述 + /// + [XmlElement("memo")] + public string Memo { get; set; } + + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 卖家id + /// + [XmlElement("seller_id")] + public string SellerId { get; set; } + + /// + /// 姓名 + /// + [XmlElement("user_name")] + public string UserName { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AntMerchantOrderStoreSyncResponse.cs b/AlipaySDKNet/Response/AntMerchantOrderStoreSyncResponse.cs new file mode 100644 index 000000000..df1643b5c --- /dev/null +++ b/AlipaySDKNet/Response/AntMerchantOrderStoreSyncResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntMerchantOrderStoreSyncResponse. + /// + public class AntMerchantOrderStoreSyncResponse : AopResponse + { + /// + /// 订单的ID + /// + [XmlElement("order_id")] + public string OrderId { get; set; } + + /// + /// 订单状态 + /// + [XmlElement("order_status")] + public string OrderStatus { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AntfortuneQuotationResearchdataQueryResponse.cs b/AlipaySDKNet/Response/AntfortuneQuotationResearchdataQueryResponse.cs new file mode 100644 index 000000000..9044e0881 --- /dev/null +++ b/AlipaySDKNet/Response/AntfortuneQuotationResearchdataQueryResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AntfortuneQuotationResearchdataQueryResponse. + /// + public class AntfortuneQuotationResearchdataQueryResponse : AopResponse + { + /// + /// 结果码 + /// + [XmlElement("result_code")] + public string ResultCode { get; set; } + + /// + /// 金融信息数据返回值,datatable的json形式。 + /// + [XmlElement("result_content")] + public string ResultContent { get; set; } + + /// + /// 结果的描述 + /// + [XmlElement("result_desc")] + public string ResultDesc { get; set; } + + /// + /// 是否本次请求成功 + /// + [XmlElement("result_success")] + public bool ResultSuccess { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AnttechAiCvOcrBusinesslicenseIdentifyResponse.cs b/AlipaySDKNet/Response/AnttechAiCvOcrBusinesslicenseIdentifyResponse.cs new file mode 100644 index 000000000..3a0fae8bd --- /dev/null +++ b/AlipaySDKNet/Response/AnttechAiCvOcrBusinesslicenseIdentifyResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechAiCvOcrBusinesslicenseIdentifyResponse. + /// + public class AnttechAiCvOcrBusinesslicenseIdentifyResponse : AopResponse + { + /// + /// 算法错误信息 + /// + [XmlElement("algo_msg")] + public string AlgoMsg { get; set; } + + /// + /// 算法异常错误码 + /// + [XmlElement("algo_ret")] + public long AlgoRet { get; set; } + + /// + /// 框架错误信息 + /// + [XmlElement("message")] + public string Message { get; set; } + + /// + /// 算法结果,JSON String + /// + [XmlElement("result")] + public string Result { get; set; } + + /// + /// 框架inference服务错误码,0为正常 + /// + [XmlElement("ret")] + public long Ret { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AnttechAiCvOcrVatinvoiceIdentifyResponse.cs b/AlipaySDKNet/Response/AnttechAiCvOcrVatinvoiceIdentifyResponse.cs new file mode 100644 index 000000000..5df67d36d --- /dev/null +++ b/AlipaySDKNet/Response/AnttechAiCvOcrVatinvoiceIdentifyResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechAiCvOcrVatinvoiceIdentifyResponse. + /// + public class AnttechAiCvOcrVatinvoiceIdentifyResponse : AopResponse + { + /// + /// 算法错误信息 + /// + [XmlElement("algo_msg")] + public string AlgoMsg { get; set; } + + /// + /// 算法异常错误码 + /// + [XmlElement("algo_ret")] + public string AlgoRet { get; set; } + + /// + /// 框架错误信息 + /// + [XmlElement("message")] + public string Message { get; set; } + + /// + /// 算法结果,JSON String + /// + [XmlElement("result")] + public string Result { get; set; } + + /// + /// 框架inference服务错误码,0为正常 + /// + [XmlElement("ret")] + public string Ret { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AnttechAiCvTfjsModelQueryResponse.cs b/AlipaySDKNet/Response/AnttechAiCvTfjsModelQueryResponse.cs index 0e7595f07..4f91724cd 100644 --- a/AlipaySDKNet/Response/AnttechAiCvTfjsModelQueryResponse.cs +++ b/AlipaySDKNet/Response/AnttechAiCvTfjsModelQueryResponse.cs @@ -1,5 +1,6 @@ using System; using System.Xml.Serialization; +using System.Collections.Generic; namespace Aop.Api.Response { @@ -9,11 +10,18 @@ namespace Aop.Api.Response public class AnttechAiCvTfjsModelQueryResponse : AopResponse { /// - /// tfjs端模型bin文件下载url + /// 已废弃 /// [XmlElement("bin_url")] public string BinUrl { get; set; } + /// + /// 模型bin文件的下载地址 + /// + [XmlArray("bin_urls")] + [XmlArrayItem("string")] + public List BinUrls { get; set; } + /// /// tfjs端模型json文件下载url /// diff --git a/AlipaySDKNet/Response/AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse.cs b/AlipaySDKNet/Response/AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse.cs new file mode 100644 index 000000000..64d0f021c --- /dev/null +++ b/AlipaySDKNet/Response/AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse. + /// + public class AnttechBlockchainFinanceMylogisticfinsysMessagePublishResponse : AopResponse + { + /// + /// 返回值 + /// + [XmlElement("data")] + public string Data { get; set; } + + /// + /// 额外信息,非json形式,如 + /// + [XmlElement("extra_info")] + public string ExtraInfo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/KoubeiShopWxloginQueryResponse.cs b/AlipaySDKNet/Response/KoubeiShopWxloginQueryResponse.cs new file mode 100644 index 000000000..32887772f --- /dev/null +++ b/AlipaySDKNet/Response/KoubeiShopWxloginQueryResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// KoubeiShopWxloginQueryResponse. + /// + public class KoubeiShopWxloginQueryResponse : AopResponse + { + /// + /// 用户唯一标识的 openid + /// + [XmlElement("openid")] + public string Openid { get; set; } + + /// + /// 会话密钥 + /// + [XmlElement("session_key")] + public string SessionKey { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayAmountQueryResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayAmountQueryResponse.cs new file mode 100644 index 000000000..cfc834e21 --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayAmountQueryResponse.cs @@ -0,0 +1,41 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayAmountQueryResponse. + /// + public class MybankCreditSupplychainCreditpayAmountQueryResponse : AopResponse + { + /// + /// 准入标志 + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 可用额度 + /// + [XmlElement("available_amt")] + public string AvailableAmt { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 授信额度 + /// + [XmlElement("total_amt")] + public string TotalAmt { get; set; } + + /// + /// Trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBillQueryResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBillQueryResponse.cs new file mode 100644 index 000000000..fae33bf41 --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBillQueryResponse.cs @@ -0,0 +1,78 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBillQueryResponse. + /// + public class MybankCreditSupplychainCreditpayBillQueryResponse : AopResponse + { + /// + /// 余额总金额 + /// + [XmlElement("balance_amt")] + public string BalanceAmt { get; set; } + + /// + /// 余额罚息金额 + /// + [XmlElement("balance_int_amt")] + public string BalanceIntAmt { get; set; } + + /// + /// 余额本金金额 + /// + [XmlElement("balance_prin_amt")] + public string BalancePrinAmt { get; set; } + + /// + /// 入账金额 + /// + [XmlElement("bill_amt")] + public string BillAmt { get; set; } + + /// + /// 出账日期 + /// + [XmlElement("bill_date")] + public string BillDate { get; set; } + + /// + /// 账单罚息金额 + /// + [XmlElement("bill_int_amt")] + public string BillIntAmt { get; set; } + + /// + /// 账单本金金额 + /// + [XmlElement("bill_prin_amt")] + public string BillPrinAmt { get; set; } + + /// + /// 买方信息,这里是ISV的信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 账单状态:NOR/CLR/OVD + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 网商日志ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyersignCreateResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyersignCreateResponse.cs new file mode 100644 index 000000000..46a04e2fb --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyersignCreateResponse.cs @@ -0,0 +1,53 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBuyersignCreateResponse. + /// + public class MybankCreditSupplychainCreditpayBuyersignCreateResponse : AopResponse + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 签约失败原因,签约失败时返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// ipId + /// + [XmlElement("ip_id")] + public string IpId { get; set; } + + /// + /// ipRoleId + /// + [XmlElement("ip_role_id")] + public string IpRoleId { get; set; } + + /// + /// 是否可重试 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// 是否签约成功:true/false + /// + [XmlElement("sign_result")] + public bool SignResult { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyerunsignCreateResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyerunsignCreateResponse.cs new file mode 100644 index 000000000..fa3c2e5a1 --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyerunsignCreateResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignCreateResponse. + /// + public class MybankCreditSupplychainCreditpayBuyerunsignCreateResponse : AopResponse + { + /// + /// 失败原因码:解约失败时返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// 是否可以重试 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 解约结果 + /// + [XmlElement("unsign_result")] + public bool UnsignResult { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse.cs new file mode 100644 index 000000000..d03ab0e5e --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse. + /// + public class MybankCreditSupplychainCreditpayBuyerunsignadmitQueryResponse : AopResponse + { + /// + /// 能否解约:true/false + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 不可解约原因码,失败时返回 + /// + [XmlElement("unadmit_reason")] + public string UnadmitReason { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellersignCreateResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellersignCreateResponse.cs new file mode 100644 index 000000000..51b40f5c1 --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellersignCreateResponse.cs @@ -0,0 +1,53 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellersignCreateResponse. + /// + public class MybankCreditSupplychainCreditpaySellersignCreateResponse : AopResponse + { + /// + /// 合约编号 + /// + [XmlElement("ar_no")] + public string ArNo { get; set; } + + /// + /// 签约失败时需要,签约失败原因码 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// ipId + /// + [XmlElement("ip_id")] + public string IpId { get; set; } + + /// + /// ipRoleId + /// + [XmlElement("ip_role_id")] + public string IpRoleId { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// 成功与否:true/false + /// + [XmlElement("sign_result")] + public bool SignResult { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellersignadmitQueryResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellersignadmitQueryResponse.cs new file mode 100644 index 000000000..868df8cdd --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellersignadmitQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellersignadmitQueryResponse. + /// + public class MybankCreditSupplychainCreditpaySellersignadmitQueryResponse : AopResponse + { + /// + /// 准入/不准入:true/false + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 网商日志跟踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 签约不准入原因 + /// + [XmlElement("unadmit_reason")] + public string UnadmitReason { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellerunsignCreateResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellerunsignCreateResponse.cs new file mode 100644 index 000000000..3ed90f4fa --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellerunsignCreateResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignCreateResponse. + /// + public class MybankCreditSupplychainCreditpaySellerunsignCreateResponse : AopResponse + { + /// + /// 失败原因码,解约失败时返回 + /// + [XmlElement("fail_reason")] + public string FailReason { get; set; } + + /// + /// 是否可重试 + /// + [XmlElement("retry")] + public bool Retry { get; set; } + + /// + /// trace信息 + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 解约结果:true/false + /// + [XmlElement("unsign_result")] + public bool UnsignResult { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellerunsignQueryResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellerunsignQueryResponse.cs new file mode 100644 index 000000000..715e35b45 --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpaySellerunsignQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpaySellerunsignQueryResponse. + /// + public class MybankCreditSupplychainCreditpaySellerunsignQueryResponse : AopResponse + { + /// + /// 是否可解约 + /// + [XmlElement("admit")] + public bool Admit { get; set; } + + /// + /// 日志id + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 不可解约原因码,解约失败时返回 + /// + [XmlElement("unadmit_reason")] + public string UnadmitReason { get; set; } + } +} diff --git a/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayTradeQueryResponse.cs b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayTradeQueryResponse.cs new file mode 100644 index 000000000..41077bb23 --- /dev/null +++ b/AlipaySDKNet/Response/MybankCreditSupplychainCreditpayTradeQueryResponse.cs @@ -0,0 +1,96 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// MybankCreditSupplychainCreditpayTradeQueryResponse. + /// + public class MybankCreditSupplychainCreditpayTradeQueryResponse : AopResponse + { + /// + /// 买方信息 + /// + [XmlElement("buyer")] + public Member Buyer { get; set; } + + /// + /// 1688买家ID + /// + [XmlElement("buyer_scene_id")] + public string BuyerSceneId { get; set; } + + /// + /// 确认收货金额 + /// + [XmlElement("confirm_amt")] + public string ConfirmAmt { get; set; } + + /// + /// 创建日期 + /// + [XmlElement("create_date")] + public string CreateDate { get; set; } + + /// + /// 生效日期 + /// + [XmlElement("effect_date")] + public string EffectDate { get; set; } + + /// + /// 外部订单号 + /// + [XmlElement("out_order_no")] + public string OutOrderNo { get; set; } + + /// + /// 退款金额,单位:分 + /// + [XmlElement("refund_amt")] + public string RefundAmt { get; set; } + + /// + /// 卖方信息 + /// + [XmlElement("seller")] + public Member Seller { get; set; } + + /// + /// 1688卖家ID + /// + [XmlElement("seller_scene_id")] + public string SellerSceneId { get; set; } + + /// + /// 源订单ID,1688订单ID + /// + [XmlElement("source_order_no")] + public string SourceOrderNo { get; set; } + + /// + /// 订单状态:VALID/INVALID/INIT/CANCEL + /// + [XmlElement("status")] + public string Status { get; set; } + + /// + /// 网商日志追踪ID + /// + [XmlElement("trace_id")] + public string TraceId { get; set; } + + /// + /// 订单金额,单位:分 + /// + [XmlElement("trade_amt")] + public string TradeAmt { get; set; } + + /// + /// 内部订单号 + /// + [XmlElement("trade_no")] + public string TradeNo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/ZhimaMerchantContractCommonConfirmResponse.cs b/AlipaySDKNet/Response/ZhimaMerchantContractCommonConfirmResponse.cs new file mode 100644 index 000000000..4d05e3efc --- /dev/null +++ b/AlipaySDKNet/Response/ZhimaMerchantContractCommonConfirmResponse.cs @@ -0,0 +1,23 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractCommonConfirmResponse. + /// + public class ZhimaMerchantContractCommonConfirmResponse : AopResponse + { + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/ZhimaMerchantContractCommonQueryResponse.cs b/AlipaySDKNet/Response/ZhimaMerchantContractCommonQueryResponse.cs new file mode 100644 index 000000000..4c7b481d0 --- /dev/null +++ b/AlipaySDKNet/Response/ZhimaMerchantContractCommonQueryResponse.cs @@ -0,0 +1,191 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractCommonQueryResponse. + /// + public class ZhimaMerchantContractCommonQueryResponse : AopResponse + { + /// + /// 取消的操作主体 用于区分是系统取消还是用户主动取消 + /// + [XmlElement("cancel_operator")] + public string CancelOperator { get; set; } + + /// + /// 是否支持取消 + /// + [XmlElement("cancel_supported")] + public bool CancelSupported { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 合约状态 INIT:初始化,待应约状态 EFFECT:生效 COMPLETE:完结 CLOSE:关闭 INVALID:失效 + /// + [XmlElement("contract_status")] + public string ContractStatus { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 应约时间 + /// + [XmlElement("gmt_accept")] + public string GmtAccept { get; set; } + + /// + /// 合约取消时间 + /// + [XmlElement("gmt_cancel")] + public string GmtCancel { get; set; } + + /// + /// 逾期时间 + /// + [XmlElement("gmt_due")] + public string GmtDue { get; set; } + + /// + /// 合约完结时间 + /// + [XmlElement("gmt_end")] + public string GmtEnd { get; set; } + + /// + /// 合约生效时间 + /// + [XmlElement("gmt_valid")] + public string GmtValid { get; set; } + + /// + /// 事项结束时间 + /// + [XmlElement("item_end_time")] + public string ItemEndTime { get; set; } + + /// + /// 事项号 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 事项开始时间 + /// + [XmlElement("item_start_time")] + public string ItemStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + + /// + /// 事项下标的信息 + /// + [XmlElement("subjects")] + public string Subjects { get; set; } + } +} diff --git a/AlipaySDKNet/Response/ZhimaMerchantContractOfferModifyResponse.cs b/AlipaySDKNet/Response/ZhimaMerchantContractOfferModifyResponse.cs new file mode 100644 index 000000000..9c5970648 --- /dev/null +++ b/AlipaySDKNet/Response/ZhimaMerchantContractOfferModifyResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractOfferModifyResponse. + /// + public class ZhimaMerchantContractOfferModifyResponse : AopResponse + { + /// + /// 业务操作结果,成功或失败 + /// + [XmlElement("biz_result")] + public string BizResult { get; set; } + } +} diff --git a/AlipaySDKNet/Response/ZhimaMerchantContractOfferQueryResponse.cs b/AlipaySDKNet/Response/ZhimaMerchantContractOfferQueryResponse.cs new file mode 100644 index 000000000..574753a68 --- /dev/null +++ b/AlipaySDKNet/Response/ZhimaMerchantContractOfferQueryResponse.cs @@ -0,0 +1,107 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractOfferQueryResponse. + /// + public class ZhimaMerchantContractOfferQueryResponse : AopResponse + { + /// + /// 此类目为分配给商户在内容下的不同类目分类,(如直播/电影类目) + /// + [XmlElement("category_code")] + public string CategoryCode { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容名称 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/ZhimaMerchantContractOnofferQueryResponse.cs b/AlipaySDKNet/Response/ZhimaMerchantContractOnofferQueryResponse.cs new file mode 100644 index 000000000..18c6d4c39 --- /dev/null +++ b/AlipaySDKNet/Response/ZhimaMerchantContractOnofferQueryResponse.cs @@ -0,0 +1,185 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractOnofferQueryResponse. + /// + public class ZhimaMerchantContractOnofferQueryResponse : AopResponse + { + /// + /// 取消的操作主体 用于区分是系统取消还是用户主动取消 + /// + [XmlElement("cancel_operator")] + public string CancelOperator { get; set; } + + /// + /// 是否支持取消 + /// + [XmlElement("cancel_supported")] + public bool CancelSupported { get; set; } + + /// + /// 约定内容描述 + /// + [XmlElement("contract_content")] + public string ContractContent { get; set; } + + /// + /// 合约号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + + /// + /// 合约主体描述,用于呈现支付端内约定详情中的主体描述 + /// + [XmlElement("contract_principal_desc")] + public string ContractPrincipalDesc { get; set; } + + /// + /// 合约主体图片链接 + /// + [XmlElement("contract_principal_logo")] + public string ContractPrincipalLogo { get; set; } + + /// + /// 合约状态 INIT:初始化,待应约状态 EFFECT:生效 COMPLETE:完结 CLOSE:关闭 INVALID:失效 + /// + [XmlElement("contract_status")] + public string ContractStatus { get; set; } + + /// + /// 扩展参数 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 去履约完成时点击的链接地址 + /// + [XmlElement("fufilment_callback_url")] + public string FufilmentCallbackUrl { get; set; } + + /// + /// 履约需要完成次数,如看直播一次,关注店铺一次 + /// + [XmlElement("fufilment_cnt")] + public long FufilmentCnt { get; set; } + + /// + /// 履约需要完成的事项描述 + /// + [XmlElement("fufilment_desc")] + public string FufilmentDesc { get; set; } + + /// + /// 合约周期结束时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_end_time")] + public string FufilmentEndTime { get; set; } + + /// + /// 履约周期类型(default:默认有限周期,需要填写开始结束时间) + /// + [XmlElement("fufilment_period_type")] + public string FufilmentPeriodType { get; set; } + + /// + /// 合约周期开始时间 fufilment_period_type=default时必选 + /// + [XmlElement("fufilment_start_time")] + public string FufilmentStartTime { get; set; } + + /// + /// 应约时间 + /// + [XmlElement("gmt_accept")] + public string GmtAccept { get; set; } + + /// + /// 合约取消时间 + /// + [XmlElement("gmt_cancel")] + public string GmtCancel { get; set; } + + /// + /// 逾期时间 + /// + [XmlElement("gmt_due")] + public string GmtDue { get; set; } + + /// + /// 合约完结时间 + /// + [XmlElement("gmt_end")] + public string GmtEnd { get; set; } + + /// + /// 事项结束时间 + /// + [XmlElement("item_end_time")] + public string ItemEndTime { get; set; } + + /// + /// 事项号 + /// + [XmlElement("item_no")] + public string ItemNo { get; set; } + + /// + /// 事项开始时间 + /// + [XmlElement("item_start_time")] + public string ItemStartTime { get; set; } + + /// + /// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id) + /// + [XmlElement("offer_creater_id")] + public string OfferCreaterId { get; set; } + + /// + /// 发约创建者名称,对应: 商户名称 芝麻用户名称 支付宝用户名称 淘宝用户名称 + /// + [XmlElement("offer_creater_name")] + public string OfferCreaterName { get; set; } + + /// + /// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("offer_creater_type")] + public string OfferCreaterType { get; set; } + + /// + /// 外部业务号 + /// + [XmlElement("out_biz_no")] + public string OutBizNo { get; set; } + + /// + /// 外部内容号,对应标的物id,如直播号,电影id,店铺id,节目id等 + /// + [XmlElement("out_content_no")] + public string OutContentNo { get; set; } + + /// + /// 应约主体id + /// + [XmlElement("sign_principal_id")] + public string SignPrincipalId { get; set; } + + /// + /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 + /// + [XmlElement("sign_principal_type")] + public string SignPrincipalType { get; set; } + + /// + /// 事项下标的信息 + /// + [XmlElement("subjects")] + public string Subjects { get; set; } + } +} diff --git a/AlipaySDKNet/Response/ZhimaMerchantContractQuickCreateResponse.cs b/AlipaySDKNet/Response/ZhimaMerchantContractQuickCreateResponse.cs new file mode 100644 index 000000000..408abca35 --- /dev/null +++ b/AlipaySDKNet/Response/ZhimaMerchantContractQuickCreateResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// ZhimaMerchantContractQuickCreateResponse. + /// + public class ZhimaMerchantContractQuickCreateResponse : AopResponse + { + /// + /// 发约单单号 + /// + [XmlElement("offer_no")] + public string OfferNo { get; set; } + } +} diff --git a/README.md b/README.md index 08c9d8cee..d801a54b6 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Falipay%2Falipay-sdk-net-all.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Falipay%2Falipay-sdk-net-all?ref=badge_shield) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/068a5b3d1b984234bedba4cc8647ff8c)](https://www.codacy.com/manual/antopen/alipay-sdk-net-all?utm_source=github.com&utm_medium=referral&utm_content=alipay/alipay-sdk-net-all&utm_campaign=Badge_Grade) [![Build Status](https://www.travis-ci.org/alipay/alipay-sdk-net-all.svg?branch=dev)](https://www.travis-ci.org/alipay/alipay-sdk-net-all) -[![codecov](https://codecov.io/gh/alipay/alipay-sdk-net-all/branch/master/graph/badge.svg)](https://codecov.io/gh/alipay/alipay-sdk-net-all) +[![codecov](https://codecov.io/gh/alipay/alipay-sdk-net-all/branch/dev/graph/badge.svg)](https://codecov.io/gh/alipay/alipay-sdk-net-all) 欢迎使用 Alipay SDK for .NET 。