diff --git a/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj b/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj index 4796da10a..0ab9d5ae7 100644 --- a/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj +++ b/AlipaySDKNet.Standard/AlipaySDKNet.Standard.csproj @@ -3,7 +3,7 @@ netstandard2.0 true - 4.2.103 + 4.2.109 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 03e5eebf3..22922c470 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.103.ALL"; + public const string SDK_VERSION = "alipay-sdk-net-4.2.109.ALL"; private CertEnvironment certEnvironment; diff --git a/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs index 5364dc449..051dec30c 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs @@ -16,5 +16,11 @@ public class AlipayBossFncApbillBillcustviewBatchqueryModel : AopObject [XmlArray("bill_nos")] [XmlArrayItem("string")] public List BillNos { get; set; } + + /// + /// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"} + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs index e6e0530c1..5db6e182d 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs @@ -54,6 +54,12 @@ public class AlipayBossFncApbillCustviewBatchqueryModel : AopObject [XmlElement("inst_id")] public string InstId { get; set; } + /// + /// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"} + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } + /// /// 参与者角色ID /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs index 13f125e15..bc534aa28 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs @@ -54,6 +54,12 @@ public class AlipayBossFncApbillTotalbillamtQueryModel : AopObject [XmlElement("inst_id")] public string InstId { get; set; } + /// + /// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"} + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } + /// /// 参与者角色ID /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs new file mode 100644 index 000000000..96d593052 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusMetrodetailQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusMetrodetailQueryModel : AopObject + { + /// + /// 版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 6位目的地geohash + /// + [XmlElement("dest_geo")] + public string DestGeo { get; set; } + + /// + /// 结束时间 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 进出站 0:进站 1:出站 + /// + [XmlElement("is_out")] + public long IsOut { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 开始年月 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 站点id + /// + [XmlElement("station_id")] + public string StationId { get; set; } + + /// + /// 操作类型: 0:普通(默认) 1:潜在 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs new file mode 100644 index 000000000..65d534b1c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusMetroodQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusMetroodQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 结束时间 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 进出站 0:进站 1:出站 + /// + [XmlElement("is_out")] + public long IsOut { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 开始年月 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 站点名称 + /// + [XmlElement("station_id")] + public string StationId { get; set; } + + /// + /// 操作类型: 0:普通(默认) 1:潜在 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs new file mode 100644 index 000000000..36c60506d --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusMetrotimeQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusMetrotimeQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 6位目的地geohash + /// + [XmlElement("dest_geo")] + public string DestGeo { get; set; } + + /// + /// 结束年月 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 进出站 0:进站 1:出站 + /// + [XmlElement("is_out")] + public long IsOut { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 开始年月 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 地铁站名称 + /// + [XmlElement("station_id")] + public string StationId { get; set; } + + /// + /// 操作类型: 0:普通(默认) 1:潜在 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs deleted file mode 100644 index 3ead87889..000000000 --- a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// AlipayDataDataserviceAntdacEasyserviceQueryModel Data Structure. - /// - [Serializable] - public class AlipayDataDataserviceAntdacEasyserviceQueryModel : AopObject - { - /// - /// 调用方法id+询问antdac应用开发者获取+每个方法id对应一个真实调用的接口 - /// - [XmlElement("method_id")] - public string MethodId { get; set; } - - /// - /// 方法所需参数+json字符串格式+method_id接口所需的参数 - /// - [XmlElement("parameter_json")] - public string ParameterJson { get; set; } - } -} diff --git a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs deleted file mode 100644 index 75a9bfcd9..000000000 --- a/AlipaySDKNet.Standard/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// AlipayDataDataserviceLbsDiscountBatchqueryModel Data Structure. - /// - [Serializable] - public class AlipayDataDataserviceLbsDiscountBatchqueryModel : AopObject - { - /// - /// 媒体编号,使用前需要找业务申请 ,不申请直接调用会失败 - /// - [XmlElement("channel")] - public string Channel { get; set; } - - /// - /// 手机IMEI号,imei、user_id、mobile三者必须且只能填一个 - /// - [XmlElement("imei")] - public string Imei { get; set; } - - /// - /// 纬度 - /// - [XmlElement("latitude")] - public string Latitude { get; set; } - - /// - /// 经度 - /// - [XmlElement("longitude")] - public string Longitude { get; set; } - - /// - /// 手机号码,imei、user_id、mobile三者必须且只能填一个 - /// - [XmlElement("mobile")] - public string Mobile { get; set; } - - /// - /// 输出的券列表大小 - /// - [XmlElement("size")] - public long Size { get; set; } - - /// - /// 支付宝用户ID,imei、user_id、mobile三者必须且只能填一个 - /// - [XmlElement("user_id")] - public string UserId { get; set; } - } -} diff --git a/AlipaySDKNet.Standard/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs new file mode 100644 index 000000000..c3cab051b --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayOpenContentContentlibYoukuvideoauditSendModel Data Structure. + /// + [Serializable] + public class AlipayOpenContentContentlibYoukuvideoauditSendModel : AopObject + { + /// + /// 审核后状态:allowed 审核通 过,blocked 屏蔽驳回, censoring 审核中 + /// + [XmlElement("action")] + public string Action { get; set; } + + /// + /// 扩展信息,json格式 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 审核前状态:allowed 审核通 过,blocked 屏蔽驳回, censoring 审核中 + /// + [XmlElement("old_action")] + public string OldAction { get; set; } + + /// + /// 审核来源,1表示审核-一审、 2表示审核-二审、3表示审核- 三审、4表示审核-综合审、 5表示审核-修改审, 30表示播 控, 31表示版权解除屏蔽操 作,32VMS解屏蔽,33表示视 频替换 40来疯先发后审 41 表 示来疯审核 + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 视频ID + /// + [XmlElement("vid")] + public string Vid { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs new file mode 100644 index 000000000..8ef291ec5 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayOverseasTravelFliggyAuthorityQueryModel Data Structure. + /// + [Serializable] + public class AlipayOverseasTravelFliggyAuthorityQueryModel : AopObject + { + /// + /// 支付宝运营店ID + /// + [XmlElement("global_shop_id")] + public string GlobalShopId { get; set; } + + /// + /// 登录账户的操作员ID + /// + [XmlElement("operator_id")] + public string OperatorId { get; set; } + + /// + /// 用户类型: 主账户 or 操作员. 主账号:MAIN_ACCOUNT 操作员:OPERATOR + /// + [XmlElement("operator_type")] + public string OperatorType { get; set; } + + /// + /// 登录账户归属的机构PID + /// + [XmlElement("owner_id")] + public string OwnerId { get; set; } + + /// + /// 飞猪门店ID + /// + [XmlElement("store_id")] + public string StoreId { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayOverseasTravelFliggyStoreModifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayOverseasTravelFliggyStoreModifyModel.cs new file mode 100644 index 000000000..c443686a4 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayOverseasTravelFliggyStoreModifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayOverseasTravelFliggyStoreModifyModel Data Structure. + /// + [Serializable] + public class AlipayOverseasTravelFliggyStoreModifyModel : AopObject + { + /// + /// 错误码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 主体数据 + /// + [XmlElement("data")] + public StoreInfo Data { get; set; } + + /// + /// 请求消息 + /// + [XmlElement("message")] + public string Message { get; set; } + + /// + /// 成功 + /// + [XmlElement("success")] + public bool Success { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayPayApplepayTransactionauthtokenCreateModel.cs b/AlipaySDKNet.Standard/Domain/AlipayPayApplepayTransactionauthtokenCreateModel.cs new file mode 100644 index 000000000..79cb50b7c --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayPayApplepayTransactionauthtokenCreateModel.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayApplepayTransactionauthtokenCreateModel Data Structure. + /// + [Serializable] + public class AlipayPayApplepayTransactionauthtokenCreateModel : AopObject + { + /// + /// 设备id + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 卡id + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 卡id列表,与卡id两者不能同时为空 + /// + [XmlArray("provisioning_bundle_identifiers")] + [XmlArrayItem("string")] + public List ProvisioningBundleIdentifiers { get; set; } + + /// + /// 推送通知给wagu设备的token + /// + [XmlElement("push_token")] + public string PushToken { get; set; } + + /// + /// uid + /// + [XmlElement("reference_identifier")] + public string ReferenceIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayBarcodeeventNotifyModel.cs b/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayBarcodeeventNotifyModel.cs new file mode 100644 index 000000000..0abcb29a6 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayPayCodecApplepayBarcodeeventNotifyModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecApplepayBarcodeeventNotifyModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecApplepayBarcodeeventNotifyModel : AopObject + { + /// + /// 码的id。{Identifier for this credential} + /// + [XmlElement("barcode_identifier")] + public string BarcodeIdentifier { get; set; } + + /// + /// 上报事件,Base64 encoded UTF-8 bytes of Event Data JSON object defined below. + /// + [XmlElement("event")] + public string Event { get; set; } + + /// + /// 上报时间的签名,Base64 encoded PKCS#7 detached ECDSA signature. Signature data is generated over the SHA- 256 hash of Base64 decoded event bytes。 + /// + [XmlElement("signature")] + public string Signature { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayPayCodecHschoolDecodeUseModel.cs b/AlipaySDKNet.Standard/Domain/AlipayPayCodecHschoolDecodeUseModel.cs new file mode 100644 index 000000000..a27fb6bd9 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayPayCodecHschoolDecodeUseModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecHschoolDecodeUseModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecHschoolDecodeUseModel : AopObject + { + /// + /// 码值 + /// + [XmlElement("code_value")] + public string CodeValue { get; set; } + + /// + /// 机构号 + /// + [XmlElement("institution_code")] + public string InstitutionCode { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayTradeApplepayAuthenticationSubmitModel.cs b/AlipaySDKNet.Standard/Domain/AlipayTradeApplepayAuthenticationSubmitModel.cs new file mode 100644 index 000000000..b9e2b53b4 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayTradeApplepayAuthenticationSubmitModel.cs @@ -0,0 +1,38 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayTradeApplepayAuthenticationSubmitModel Data Structure. + /// + [Serializable] + public class AlipayTradeApplepayAuthenticationSubmitModel : AopObject + { + /// + /// ApplePay核身鉴权结果,包括:支付密码、用户确认、数字签名 + /// + [XmlArray("authentication_results")] + [XmlArrayItem("authentication_result")] + public List AuthenticationResults { get; set; } + + /// + /// Apple端的设备ID + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// Apple绑定的BundleId + /// + [XmlElement("dpan_identifier")] + public string DpanIdentifier { get; set; } + + /// + /// 交易标识 + /// + [XmlElement("transaction_identifier")] + public string TransactionIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AlipayTradeWapPayModel.cs b/AlipaySDKNet.Standard/Domain/AlipayTradeWapPayModel.cs index 3b9429fed..888f9168b 100644 --- a/AlipaySDKNet.Standard/Domain/AlipayTradeWapPayModel.cs +++ b/AlipaySDKNet.Standard/Domain/AlipayTradeWapPayModel.cs @@ -1,5 +1,6 @@ using System; using System.Xml.Serialization; +using System.Collections.Generic; namespace Aop.Api.Domain { @@ -51,6 +52,13 @@ public class AlipayTradeWapPayModel : AopObject [XmlElement("extend_params")] public ExtendParams ExtendParams { get; set; } + /// + /// 订单包含的商品列表信息,json格式,其它说明详见商品明细说明 + /// + [XmlArray("goods_detail")] + [XmlArrayItem("goods_detail")] + public List GoodsDetail { get; set; } + /// /// 商品主类型 :0-虚拟类商品,1-实物类商品 /// diff --git a/AlipaySDKNet.Standard/Domain/AlipayUserApplepayOtpSendModel.cs b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayOtpSendModel.cs new file mode 100644 index 000000000..3cd460ac5 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AlipayUserApplepayOtpSendModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayOtpSendModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayOtpSendModel : AopObject + { + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 校验方法标识 + /// + [XmlElement("resolution_method_identifier")] + public string ResolutionMethodIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AntlbsKBDiscountInfo.cs b/AlipaySDKNet.Standard/Domain/AntlbsKBDiscountInfo.cs deleted file mode 100644 index 49e875efd..000000000 --- a/AlipaySDKNet.Standard/Domain/AntlbsKBDiscountInfo.cs +++ /dev/null @@ -1,144 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// AntlbsKBDiscountInfo Data Structure. - /// - [Serializable] - public class AntlbsKBDiscountInfo : AopObject - { - /// - /// 全场代金的门槛金额 - /// - [XmlElement("apply_condition")] - public string ApplyCondition { get; set; } - - /// - /// 买M送N的描述 - /// - [XmlElement("buy_send_desc")] - public string BuySendDesc { get; set; } - - /// - /// 折扣率 仅当券类型为折扣券时有效 有效折扣率取值范围0.11-0.99 仅允许保留小数点后两位 - /// - [XmlElement("discount")] - public string Discount { get; set; } - - /// - /// 最近店铺离当前用户的距离 - /// - [XmlElement("distance")] - public string Distance { get; set; } - - /// - /// 优惠结束时间 - /// - [XmlElement("end_time")] - public string EndTime { get; set; } - - /// - /// 券的图片地址 - /// - [XmlElement("image_url")] - public string ImageUrl { get; set; } - - /// - /// 优惠id - /// - [XmlElement("item_id")] - public string ItemId { get; set; } - - /// - /// 券的名称 - /// - [XmlElement("item_name")] - public string ItemName { get; set; } - - /// - /// 商品的一些标签 - /// - [XmlElement("label")] - public string Label { get; set; } - - /// - /// 减至券的原价 - /// - [XmlElement("original_price")] - public string OriginalPrice { get; set; } - - /// - /// 每满thresholdPrice元减perPrice元,封顶topPrice元 - /// - [XmlElement("per_price")] - public string PerPrice { get; set; } - - /// - /// 当券类型是代金券的时候,这个字段代表实际金额;当券类型是减至券的时候,这个字段代表减至到的金额 - /// - [XmlElement("price")] - public string Price { get; set; } - - /// - /// 券推荐语 - /// - [XmlElement("reason")] - public string Reason { get; set; } - - /// - /// 买A送B中,B的描述 - /// - [XmlElement("send_item_name")] - public string SendItemName { get; set; } - - /// - /// 门店id - /// - [XmlElement("shop_id")] - public string ShopId { get; set; } - - /// - /// 券的店铺名 - /// - [XmlElement("shop_name")] - public string ShopName { get; set; } - - /// - /// 已领数 - /// - [XmlElement("sold")] - public string Sold { get; set; } - - /// - /// 优惠开始时间 - /// - [XmlElement("start_time")] - public string StartTime { get; set; } - - /// - /// 每满thresholdPrice元减perPrice元,封顶topPrice元 - /// - [XmlElement("threshold_price")] - public string ThresholdPrice { get; set; } - - /// - /// 每满减用的字段:每满thresholdPrice元减perPrice元,封顶topPrice元 - /// - [XmlElement("top_price")] - public string TopPrice { get; set; } - - /// - /// 目前有discount:折扣券;cash:代金券;exchange:兑换券;limit_reduce_cash:减至券 - /// - [XmlElement("type")] - public string Type { get; set; } - - /// - /// 券二级类型。all_discount:全场折扣;single_discount:单品折扣;all_cash:全场代金;single_cash:单品代金 - /// - [XmlElement("vol_type")] - public string VolType { get; set; } - } -} diff --git a/AlipaySDKNet.Standard/Domain/AnttechBlockchainFinanceRiskWarningAddModel.cs b/AlipaySDKNet.Standard/Domain/AnttechBlockchainFinanceRiskWarningAddModel.cs new file mode 100644 index 000000000..0371fd5e7 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AnttechBlockchainFinanceRiskWarningAddModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechBlockchainFinanceRiskWarningAddModel Data Structure. + /// + [Serializable] + public class AnttechBlockchainFinanceRiskWarningAddModel : AopObject + { + /// + /// 外部风控编号 + /// + [XmlElement("out_risk_id")] + public string OutRiskId { get; set; } + + /// + /// 风控详情 + /// + [XmlElement("risk_info")] + public string RiskInfo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/AuthenticationResult.cs b/AlipaySDKNet.Standard/Domain/AuthenticationResult.cs new file mode 100644 index 000000000..2ed0344ba --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/AuthenticationResult.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AuthenticationResult Data Structure. + /// + [Serializable] + public class AuthenticationResult : AopObject + { + /// + /// 已加密的鉴权数据 + /// + [XmlElement("authentication_data")] + public string AuthenticationData { get; set; } + + /// + /// 鉴权类型,如:支付密码、数字签名 + /// + [XmlElement("authentication_mechanism")] + public string AuthenticationMechanism { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/BarcodeEventResponseHeader.cs b/AlipaySDKNet.Standard/Domain/BarcodeEventResponseHeader.cs new file mode 100644 index 000000000..a52906998 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/BarcodeEventResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BarcodeEventResponseHeader Data Structure. + /// + [Serializable] + public class BarcodeEventResponseHeader : 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/BaseOpenApiResponseHeaderDTO.cs b/AlipaySDKNet.Standard/Domain/BaseOpenApiResponseHeaderDTO.cs new file mode 100644 index 000000000..65ba65748 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/BaseOpenApiResponseHeaderDTO.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BaseOpenApiResponseHeaderDTO Data Structure. + /// + [Serializable] + public class BaseOpenApiResponseHeaderDTO : AopObject + { + /// + /// http状态码 + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/FinanceInvoiceInfo.cs b/AlipaySDKNet.Standard/Domain/FinanceInvoiceInfo.cs index 38db07ebf..2cd5b06f1 100644 --- a/AlipaySDKNet.Standard/Domain/FinanceInvoiceInfo.cs +++ b/AlipaySDKNet.Standard/Domain/FinanceInvoiceInfo.cs @@ -10,11 +10,17 @@ namespace Aop.Api.Domain public class FinanceInvoiceInfo : AopObject { /// - /// 发票金额,以元为单位的,精确到小数点后2位 + /// 发票金额(不含税),以元为单位的,精确到小数点后2位 /// [XmlElement("amount")] public string Amount { get; set; } + /// + /// 发票金额(含税) + /// + [XmlElement("amount_with_tax")] + public string AmountWithTax { get; set; } + /// /// UTC标准格式 /// @@ -27,6 +33,12 @@ public class FinanceInvoiceInfo : AopObject [XmlElement("check_code")] public string CheckCode { get; set; } + /// + /// 发票对应合同编号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + /// /// 发票影印件信息 /// @@ -44,5 +56,11 @@ public class FinanceInvoiceInfo : AopObject /// [XmlElement("invoice_number")] public string InvoiceNumber { get; set; } + + /// + /// 发票类型:专票SPECIAL,普票REGULAR,电票DIGITAL + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } } } diff --git a/AlipaySDKNet.Standard/Domain/KoubeiCateringOrderInfoSyncModel.cs b/AlipaySDKNet.Standard/Domain/KoubeiCateringOrderInfoSyncModel.cs index 7e5d17086..baa097aea 100644 --- a/AlipaySDKNet.Standard/Domain/KoubeiCateringOrderInfoSyncModel.cs +++ b/AlipaySDKNet.Standard/Domain/KoubeiCateringOrderInfoSyncModel.cs @@ -16,7 +16,7 @@ public class KoubeiCateringOrderInfoSyncModel : AopObject public string Action { get; set; } /// - /// 操作内容信息,Map actionInfo = new HashMap(); actionInfo.put("NO","5100");// 取餐号 JSONObject.toJSONString(actionInfo);拒单原因/主动退款原因/同意退款原因包括:1、RECEIVE_TIMEOUT超时未接单,2、BUSY店铺太忙,无法接待3、DUPLICATE_ORDER重复订单,4、SHOP_CLOSE店铺已打烊5、SELL_OUT菜品售完,5、OTHER_REASON 其他原因,6、TABLE_NOT_EXIST 桌号不存在,7、LOW_VERSION 收银系统版本过低,8、SHOP_NOT_CONNECTED 没有门店绑定关系,9、MERCHANT_NOT_AUTHORIZED 商户没有授权,10、POS_UNCONNECTED POS关机或未联网,11、DISH_REASON 菜品原因;拒绝退款原因包括:1、RECEIVE_TIMEOUT用户已取餐,2、UNDER_LINE_NEGOTIATION和用户协商一致,线下解决,3、OTHER_REASON其他原因,4、ORDER_HAS_PARTIAL_REFUNDED订单发起部分退款,5、ORDER_HAS_REFUNDED订单发起整单退款,6、ORDER_HAS_VERIFIED订单发起核销;接单时action_info中加桌号(tableNo),tableNo和no只能传一种,并确定取餐方式;修改桌号时action_info中传tableNo,4、部分退款调用时,out_refund_no为外部退款单号来保证幂等,refund_amount为部分退款金额。5、排队顺序同步时,action_info中加排队序号queueNum + /// 操作内容信息,Map actionInfo = new HashMap(); actionInfo.put("NO","5100");// 取餐号 JSONObject.toJSONString(actionInfo);拒单原因/主动退款原因/同意退款原因包括:1、RECEIVE_TIMEOUT超时未接单,2、BUSY店铺太忙,无法接待3、DUPLICATE_ORDER重复订单,4、SHOP_CLOSE店铺已打烊5、SELL_OUT菜品售完,5、OTHER_REASON 其他原因,6、TABLE_NOT_EXIST 桌号不存在,7、LOW_VERSION 收银系统版本过低,8、SHOP_NOT_CONNECTED 没有门店绑定关系,9、MERCHANT_NOT_AUTHORIZED 商户没有授权,10、POS_UNCONNECTED POS关机或未联网,11、DISH_REASON 菜品原因;拒绝退款原因包括:1、RECEIVE_TIMEOUT用户已取餐,2、UNDER_LINE_NEGOTIATION和用户协商一致,线下解决,3、OTHER_REASON其他原因,4、ORDER_HAS_PARTIAL_REFUNDED订单发起部分退款,5、ORDER_HAS_REFUNDED订单发起整单退款,6、ORDER_HAS_VERIFIED订单发起核销; 接单时action_info中加桌号(tableNo),tableNo和no只能传一种,并确定取餐方式;修改桌号时action_info中传tableNo,thirdPayNo:外部订单号,estimatePickUpTime:预计取餐时间,格式为:${xx}-${yy},${xx}和${yy}为数字,单位为分钟 4、部分退款调用时,out_refund_no为外部退款单号来保证幂等,refund_amount为部分退款金额。5、排队顺序同步时,action_info中加排队序号queueNum /// [XmlElement("action_info")] public string ActionInfo { get; set; } diff --git a/AlipaySDKNet.Standard/Domain/PaginationCommGroup.cs b/AlipaySDKNet.Standard/Domain/PaginationCommGroup.cs new file mode 100644 index 000000000..f1e1fcdd8 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/PaginationCommGroup.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// PaginationCommGroup Data Structure. + /// + [Serializable] + public class PaginationCommGroup : AopObject + { + /// + /// 出参列表 + /// + [XmlArray("list")] + [XmlArrayItem("kbdish_comm_group_info")] + public List List { get; set; } + + /// + /// 页码,表示当前页数 + /// + [XmlElement("page_no")] + public string PageNo { get; set; } + + /// + /// 每页条数 + /// + [XmlElement("page_size")] + public string PageSize { get; set; } + + /// + /// 总条数 + /// + [XmlElement("total_count")] + public string TotalCount { get; set; } + + /// + /// 总页数 + /// + [XmlElement("total_page")] + public string TotalPage { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/TransactionAmountDTO.cs b/AlipaySDKNet.Standard/Domain/TransactionAmountDTO.cs new file mode 100644 index 000000000..91a7e5fc7 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/TransactionAmountDTO.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TransactionAmountDTO Data Structure. + /// + [Serializable] + public class TransactionAmountDTO : AopObject + { + /// + /// 金额 + /// + [XmlElement("amount")] + public string Amount { get; set; } + + /// + /// 币种 + /// + [XmlElement("currency")] + public string Currency { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/TransactionAmountModifierDTO.cs b/AlipaySDKNet.Standard/Domain/TransactionAmountModifierDTO.cs new file mode 100644 index 000000000..11f6e5389 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/TransactionAmountModifierDTO.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TransactionAmountModifierDTO Data Structure. + /// + [Serializable] + public class TransactionAmountModifierDTO : AopObject + { + /// + /// 金额 + /// + [XmlElement("amount")] + public TransactionAmountDTO Amount { get; set; } + + /// + /// 金额类型说明 + /// + [XmlElement("description")] + public string Description { get; set; } + + /// + /// 金额类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/TransactionAuthenticationDetailDTO.cs b/AlipaySDKNet.Standard/Domain/TransactionAuthenticationDetailDTO.cs new file mode 100644 index 000000000..602c05c02 --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/TransactionAuthenticationDetailDTO.cs @@ -0,0 +1,26 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// TransactionAuthenticationDetailDTO Data Structure. + /// + [Serializable] + public class TransactionAuthenticationDetailDTO : AopObject + { + /// + /// 支付打断推进方式 + /// + [XmlArray("authentication_mechanisms")] + [XmlArrayItem("string")] + public List AuthenticationMechanisms { get; set; } + + /// + /// 密码校验方式 + /// + [XmlElement("pin_format")] + public string PinFormat { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Domain/TransactionDetailDTO.cs b/AlipaySDKNet.Standard/Domain/TransactionDetailDTO.cs new file mode 100644 index 000000000..96824d99a --- /dev/null +++ b/AlipaySDKNet.Standard/Domain/TransactionDetailDTO.cs @@ -0,0 +1,104 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// TransactionDetailDTO Data Structure. + /// + [Serializable] + public class TransactionDetailDTO : AopObject + { + /// + /// 订单金额 + /// + [XmlElement("amount")] + public string Amount { get; set; } + + /// + /// 非实付金额列表 + /// + [XmlArray("amount_modifiers")] + [XmlArrayItem("transaction_amount_modifier_d_t_o")] + public List AmountModifiers { get; set; } + + /// + /// 支付中断推进方式 + /// + [XmlElement("authentication_details")] + public TransactionAuthenticationDetailDTO AuthenticationDetails { get; set; } + + /// + /// 条码id + /// + [XmlElement("barcode_identifier")] + public string BarcodeIdentifier { get; set; } + + /// + /// 币种 + /// + [XmlElement("currency_code")] + public string CurrencyCode { get; set; } + + /// + /// 卡id + /// + [XmlElement("dpan_identifier")] + public string DpanIdentifier { get; set; } + + /// + /// tradeNo + /// + [XmlElement("identifier")] + public string Identifier { get; set; } + + /// + /// xxx + /// + [XmlElement("merchant_name")] + public string MerchantName { get; set; } + + /// + /// 实付金额 + /// + [XmlElement("nominal_amount")] + public string NominalAmount { get; set; } + + /// + /// 支付主渠道 + /// + [XmlElement("primary_funding_source_description")] + public string PrimaryFundingSourceDescription { get; set; } + + /// + /// pId + /// + [XmlElement("raw_merchant_name")] + public string RawMerchantName { get; set; } + + /// + /// iso8601格式时间 + /// + [XmlElement("transaction_date")] + public string TransactionDate { get; set; } + + /// + /// 交易标识 + /// + [XmlElement("transaction_identifier")] + public string TransactionIdentifier { get; set; } + + /// + /// 交易状态 + /// + [XmlElement("transaction_status")] + public string TransactionStatus { get; set; } + + /// + /// 交易类型 + /// + [XmlElement("transaction_type")] + public string TransactionType { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetrodetailQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetrodetailQueryRequest.cs new file mode 100644 index 000000000..f015fcc13 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetrodetailQueryRequest.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.metrodetail.query + /// + public class AlipayDataAiserviceCloudbusMetrodetailQueryRequest : IAopRequest + { + /// + /// 智慧公交--地铁OD对详情 + /// + 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.metrodetail.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/AlipayDataAiserviceCloudbusMetroodQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetroodQueryRequest.cs new file mode 100644 index 000000000..e42157826 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetroodQueryRequest.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.metrood.query + /// + public class AlipayDataAiserviceCloudbusMetroodQueryRequest : IAopRequest + { + /// + /// 智慧公交---地铁OD + /// + 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.metrood.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/AlipayDataAiserviceCloudbusMetrotimeQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetrotimeQueryRequest.cs new file mode 100644 index 000000000..5c96507d2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayDataAiserviceCloudbusMetrotimeQueryRequest.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.metrotime.query + /// + public class AlipayDataAiserviceCloudbusMetrotimeQueryRequest : 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.metrotime.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/AlipayOpenContentContentlibYoukuvideoauditSendRequest.cs b/AlipaySDKNet.Standard/Request/AlipayOpenContentContentlibYoukuvideoauditSendRequest.cs new file mode 100644 index 000000000..ad48d2d78 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayOpenContentContentlibYoukuvideoauditSendRequest.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.open.content.contentlib.youkuvideoaudit.send + /// + public class AlipayOpenContentContentlibYoukuvideoauditSendRequest : 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.open.content.contentlib.youkuvideoaudit.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/AlipayOverseasTravelFliggyAuthorityQueryRequest.cs b/AlipaySDKNet.Standard/Request/AlipayOverseasTravelFliggyAuthorityQueryRequest.cs new file mode 100644 index 000000000..53014df95 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayOverseasTravelFliggyAuthorityQueryRequest.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.overseas.travel.fliggy.authority.query + /// + public class AlipayOverseasTravelFliggyAuthorityQueryRequest : 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.overseas.travel.fliggy.authority.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/AlipayOverseasTravelFliggyStoreModifyRequest.cs b/AlipaySDKNet.Standard/Request/AlipayOverseasTravelFliggyStoreModifyRequest.cs new file mode 100644 index 000000000..37d3d2246 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayOverseasTravelFliggyStoreModifyRequest.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.overseas.travel.fliggy.store.modify + /// + public class AlipayOverseasTravelFliggyStoreModifyRequest : 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.overseas.travel.fliggy.store.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/AlipayPayApplepayTransactionauthtokenCreateRequest.cs b/AlipaySDKNet.Standard/Request/AlipayPayApplepayTransactionauthtokenCreateRequest.cs new file mode 100644 index 000000000..dab0ffb56 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayPayApplepayTransactionauthtokenCreateRequest.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.applepay.transactionauthtoken.create + /// + public class AlipayPayApplepayTransactionauthtokenCreateRequest : IAopRequest + { + /// + /// 注册拉取支付结果的权限authToken + /// + 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.applepay.transactionauthtoken.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/AlipayPayCodecApplepayBarcodeeventNotifyRequest.cs b/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayBarcodeeventNotifyRequest.cs new file mode 100644 index 000000000..96d968c13 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayPayCodecApplepayBarcodeeventNotifyRequest.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.barcodeevent.notify + /// + public class AlipayPayCodecApplepayBarcodeeventNotifyRequest : 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.barcodeevent.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/AlipayPayCodecHschoolDecodeUseRequest.cs b/AlipaySDKNet.Standard/Request/AlipayPayCodecHschoolDecodeUseRequest.cs new file mode 100644 index 000000000..200390b65 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayPayCodecHschoolDecodeUseRequest.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.hschool.decode.use + /// + public class AlipayPayCodecHschoolDecodeUseRequest : IAopRequest + { + /// + /// 双离线码在线解码API + /// + 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.hschool.decode.use"; + } + + 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/AlipayTradeApplepayAuthenticationSubmitRequest.cs b/AlipaySDKNet.Standard/Request/AlipayTradeApplepayAuthenticationSubmitRequest.cs new file mode 100644 index 000000000..ede613b82 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayTradeApplepayAuthenticationSubmitRequest.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.trade.applepay.authentication.submit + /// + public class AlipayTradeApplepayAuthenticationSubmitRequest : 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.trade.applepay.authentication.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/AlipayUserApplepayOtpSendRequest.cs b/AlipaySDKNet.Standard/Request/AlipayUserApplepayOtpSendRequest.cs new file mode 100644 index 000000000..1073094d2 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AlipayUserApplepayOtpSendRequest.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.otp.send + /// + public class AlipayUserApplepayOtpSendRequest : IAopRequest + { + /// + /// ApplePay的easy开卡OTP发送 + /// + 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.otp.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/AnttechBlockchainFinanceRiskWarningAddRequest.cs b/AlipaySDKNet.Standard/Request/AnttechBlockchainFinanceRiskWarningAddRequest.cs new file mode 100644 index 000000000..b42bc5568 --- /dev/null +++ b/AlipaySDKNet.Standard/Request/AnttechBlockchainFinanceRiskWarningAddRequest.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.risk.warning.add + /// + public class AnttechBlockchainFinanceRiskWarningAddRequest : 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 "anttech.blockchain.finance.risk.warning.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/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs index 769a6dee7..ac6b3cfef 100644 --- a/AlipaySDKNet.Standard/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs @@ -183,6 +183,12 @@ public class AlipayBossFncApbillTotalbillamtQueryResponse : AopResponse [XmlElement("mid")] public string Mid { get; set; } + /// + /// 税损扣除后月账单可关联发票金额 + /// + [XmlElement("new_can_invoice_amt")] + public MultiCurrencyMoneyOpenApi NewCanInvoiceAmt { get; set; } + /// /// 已付金额 /// diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetrodetailQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetrodetailQueryResponse.cs new file mode 100644 index 000000000..5400044ed --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetrodetailQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusMetrodetailQueryResponse. + /// + public class AlipayDataAiserviceCloudbusMetrodetailQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public MetroOdDetailResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetroodQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetroodQueryResponse.cs new file mode 100644 index 000000000..d49010410 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetroodQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusMetroodQueryResponse. + /// + public class AlipayDataAiserviceCloudbusMetroodQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public MetroOdDetailResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetrotimeQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetrotimeQueryResponse.cs new file mode 100644 index 000000000..d07a1e510 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayDataAiserviceCloudbusMetrotimeQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusMetrotimeQueryResponse. + /// + public class AlipayDataAiserviceCloudbusMetrotimeQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public MetroOdDetailResult Result { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayOpenContentContentlibYoukuvideoauditSendResponse.cs b/AlipaySDKNet.Standard/Response/AlipayOpenContentContentlibYoukuvideoauditSendResponse.cs new file mode 100644 index 000000000..44ce3d1be --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayOpenContentContentlibYoukuvideoauditSendResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOpenContentContentlibYoukuvideoauditSendResponse. + /// + public class AlipayOpenContentContentlibYoukuvideoauditSendResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayOverseasTravelFliggyAuthorityQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayOverseasTravelFliggyAuthorityQueryResponse.cs new file mode 100644 index 000000000..5792c2d20 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayOverseasTravelFliggyAuthorityQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOverseasTravelFliggyAuthorityQueryResponse. + /// + public class AlipayOverseasTravelFliggyAuthorityQueryResponse : AopResponse + { + /// + /// 错误码 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误描述 + /// + [XmlElement("error_msg")] + public string ErrorMsg { get; set; } + + /// + /// 是否有权限,true有权限,false无权限 + /// + [XmlElement("success")] + public bool Success { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayOverseasTravelFliggyStoreModifyResponse.cs b/AlipaySDKNet.Standard/Response/AlipayOverseasTravelFliggyStoreModifyResponse.cs new file mode 100644 index 000000000..a29125483 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayOverseasTravelFliggyStoreModifyResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOverseasTravelFliggyStoreModifyResponse. + /// + public class AlipayOverseasTravelFliggyStoreModifyResponse : AopResponse + { + /// + /// 错误码 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误原因 + /// + [XmlElement("error_msg")] + public string ErrorMsg { get; set; } + + /// + /// 回调处理是否成功,true标示处理成功,false标示处理失败 + /// + [XmlElement("success")] + public bool Success { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayPayApplepayTransactionauthtokenCreateResponse.cs b/AlipaySDKNet.Standard/Response/AlipayPayApplepayTransactionauthtokenCreateResponse.cs new file mode 100644 index 000000000..39289d758 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayPayApplepayTransactionauthtokenCreateResponse.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayApplepayTransactionauthtokenCreateResponse. + /// + public class AlipayPayApplepayTransactionauthtokenCreateResponse : AopResponse + { + /// + /// 通知authToken + /// + [XmlElement("authentication_token")] + public string AuthenticationToken { get; set; } + + /// + /// 响应报文头部 + /// + [XmlElement("response_header")] + public BaseOpenApiResponseHeaderDTO ResponseHeader { get; set; } + + /// + /// 是否允许通知状态转移 + /// + [XmlElement("supports_settlement")] + public bool SupportsSettlement { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayBarcodeeventNotifyResponse.cs b/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayBarcodeeventNotifyResponse.cs new file mode 100644 index 000000000..bc869b7c3 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayPayCodecApplepayBarcodeeventNotifyResponse.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecApplepayBarcodeeventNotifyResponse. + /// + public class AlipayPayCodecApplepayBarcodeeventNotifyResponse : 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 BarcodeEventResponseHeader ResponseHeader { get; set; } + + /// + /// 当前付款码是否有交易发生。 + /// + [XmlElement("transaction_available")] + public string TransactionAvailable { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayPayCodecHschoolDecodeUseResponse.cs b/AlipaySDKNet.Standard/Response/AlipayPayCodecHschoolDecodeUseResponse.cs new file mode 100644 index 000000000..f57677ea7 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayPayCodecHschoolDecodeUseResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecHschoolDecodeUseResponse. + /// + public class AlipayPayCodecHschoolDecodeUseResponse : AopResponse + { + /// + /// 学生短号 + /// + [XmlElement("feature_code")] + public string FeatureCode { get; set; } + + /// + /// 红码 : "red" 黄码 :"yellow" 绿码 : "green" 审核中 : "init" 未找到 : "notFound" + /// + [XmlElement("health_status")] + public string HealthStatus { get; set; } + + /// + /// 学校编号(外标) + /// + [XmlElement("school_std_code")] + public string SchoolStdCode { get; set; } + + /// + /// 学号 + /// + [XmlElement("student_no")] + public string StudentNo { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayTradeApplepayAuthenticationSubmitResponse.cs b/AlipaySDKNet.Standard/Response/AlipayTradeApplepayAuthenticationSubmitResponse.cs new file mode 100644 index 000000000..cac2a26b8 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayTradeApplepayAuthenticationSubmitResponse.cs @@ -0,0 +1,45 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayTradeApplepayAuthenticationSubmitResponse. + /// + public class AlipayTradeApplepayAuthenticationSubmitResponse : AopResponse + { + /// + /// 核身错误信息 + /// + [XmlElement("authentication_error")] + public string AuthenticationError { get; set; } + + /// + /// 失败时的鉴权重试机制 + /// + [XmlArray("fallback_authentication_mechanisms")] + [XmlArrayItem("string")] + public List FallbackAuthenticationMechanisms { get; set; } + + /// + /// applePay公用响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + + /// + /// 鉴权重试机制 + /// + [XmlArray("retry_authentication_mechanisms")] + [XmlArrayItem("string")] + public List RetryAuthenticationMechanisms { get; set; } + + /// + /// 交易状态 + /// + [XmlElement("updated_transaction_status")] + public string UpdatedTransactionStatus { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserApplepayOtpSendResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserApplepayOtpSendResponse.cs new file mode 100644 index 000000000..918366883 --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AlipayUserApplepayOtpSendResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayOtpSendResponse. + /// + public class AlipayUserApplepayOtpSendResponse : AopResponse + { + /// + /// 响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs index f4c3ced30..df8c3a54d 100644 --- a/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs +++ b/AlipaySDKNet.Standard/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Response /// public class AlipayUserApplepayProvisioningbundleQueryResponse : AopResponse { + /// + /// 卡状态 + /// + [XmlElement("pass_state")] + public string PassState { get; set; } + /// /// 卡模型 /// diff --git a/AlipaySDKNet.Standard/Response/AnttechBlockchainFinanceRiskWarningAddResponse.cs b/AlipaySDKNet.Standard/Response/AnttechBlockchainFinanceRiskWarningAddResponse.cs new file mode 100644 index 000000000..233d76c5f --- /dev/null +++ b/AlipaySDKNet.Standard/Response/AnttechBlockchainFinanceRiskWarningAddResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechBlockchainFinanceRiskWarningAddResponse. + /// + public class AnttechBlockchainFinanceRiskWarningAddResponse : AopResponse + { + /// + /// 提交结果 + /// + [XmlElement("submit_result")] + public string SubmitResult { get; set; } + } +} diff --git a/AlipaySDKNet/AlipaySDKNet.csproj b/AlipaySDKNet/AlipaySDKNet.csproj index 8c7d154fe..98ee1cdb1 100644 --- a/AlipaySDKNet/AlipaySDKNet.csproj +++ b/AlipaySDKNet/AlipaySDKNet.csproj @@ -10,7 +10,7 @@ AlipaySDKNet AlipaySDKNet AlipaySDKNet - 4.2.103 + 4.2.109 antopen zh 支付宝开放平台官方SDK,支持.Net Framework 3.5(SP1)及其以上版本。 @@ -813,6 +813,7 @@ + @@ -1077,6 +1078,7 @@ + @@ -1179,6 +1181,7 @@ + @@ -1368,10 +1371,13 @@ + + + @@ -1399,8 +1405,10 @@ + + @@ -1726,6 +1734,7 @@ + @@ -2699,6 +2708,9 @@ + + + @@ -3248,6 +3260,10 @@ + + + + @@ -3722,6 +3738,7 @@ + @@ -5337,9 +5354,11 @@ + + @@ -5350,6 +5369,7 @@ + @@ -5419,6 +5439,7 @@ + @@ -5537,7 +5558,6 @@ - @@ -5682,6 +5702,7 @@ + @@ -5776,6 +5797,7 @@ + @@ -5942,10 +5964,13 @@ + + + @@ -5961,8 +5986,10 @@ + + @@ -6252,6 +6279,7 @@ + @@ -7021,7 +7049,6 @@ - @@ -7042,7 +7069,6 @@ - @@ -7096,6 +7122,9 @@ + + + @@ -8210,6 +8239,7 @@ + @@ -8474,6 +8504,7 @@ + @@ -8576,6 +8607,7 @@ + @@ -8765,10 +8797,13 @@ + + + @@ -8796,8 +8831,10 @@ + + @@ -9123,6 +9160,7 @@ + @@ -10096,6 +10134,9 @@ + + + diff --git a/AlipaySDKNet/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs b/AlipaySDKNet/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs index 5364dc449..051dec30c 100644 --- a/AlipaySDKNet/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayBossFncApbillBillcustviewBatchqueryModel.cs @@ -16,5 +16,11 @@ public class AlipayBossFncApbillBillcustviewBatchqueryModel : AopObject [XmlArray("bill_nos")] [XmlArrayItem("string")] public List BillNos { get; set; } + + /// + /// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"} + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } } } diff --git a/AlipaySDKNet/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs b/AlipaySDKNet/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs index e6e0530c1..5db6e182d 100644 --- a/AlipaySDKNet/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayBossFncApbillCustviewBatchqueryModel.cs @@ -54,6 +54,12 @@ public class AlipayBossFncApbillCustviewBatchqueryModel : AopObject [XmlElement("inst_id")] public string InstId { get; set; } + /// + /// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"} + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } + /// /// 参与者角色ID /// diff --git a/AlipaySDKNet/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs b/AlipaySDKNet/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs index 13f125e15..bc534aa28 100644 --- a/AlipaySDKNet/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs +++ b/AlipaySDKNet/Domain/AlipayBossFncApbillTotalbillamtQueryModel.cs @@ -54,6 +54,12 @@ public class AlipayBossFncApbillTotalbillamtQueryModel : AopObject [XmlElement("inst_id")] public string InstId { get; set; } + /// + /// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"} + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } + /// /// 参与者角色ID /// diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs new file mode 100644 index 000000000..96d593052 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusMetrodetailQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusMetrodetailQueryModel : AopObject + { + /// + /// 版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 6位目的地geohash + /// + [XmlElement("dest_geo")] + public string DestGeo { get; set; } + + /// + /// 结束时间 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 进出站 0:进站 1:出站 + /// + [XmlElement("is_out")] + public long IsOut { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 开始年月 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 站点id + /// + [XmlElement("station_id")] + public string StationId { get; set; } + + /// + /// 操作类型: 0:普通(默认) 1:潜在 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs new file mode 100644 index 000000000..65d534b1c --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs @@ -0,0 +1,60 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusMetroodQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusMetroodQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 结束时间 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 进出站 0:进站 1:出站 + /// + [XmlElement("is_out")] + public long IsOut { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 开始年月 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 站点名称 + /// + [XmlElement("station_id")] + public string StationId { get; set; } + + /// + /// 操作类型: 0:普通(默认) 1:潜在 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs new file mode 100644 index 000000000..36c60506d --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs @@ -0,0 +1,66 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayDataAiserviceCloudbusMetrotimeQueryModel Data Structure. + /// + [Serializable] + public class AlipayDataAiserviceCloudbusMetrotimeQueryModel : AopObject + { + /// + /// 接口版本号 + /// + [XmlElement("app_version")] + public string AppVersion { get; set; } + + /// + /// 市 + /// + [XmlElement("city_code")] + public string CityCode { get; set; } + + /// + /// 6位目的地geohash + /// + [XmlElement("dest_geo")] + public string DestGeo { get; set; } + + /// + /// 结束年月 + /// + [XmlElement("end_date")] + public string EndDate { get; set; } + + /// + /// 进出站 0:进站 1:出站 + /// + [XmlElement("is_out")] + public long IsOut { get; set; } + + /// + /// 商户ID + /// + [XmlElement("partner_id")] + public string PartnerId { get; set; } + + /// + /// 开始年月 + /// + [XmlElement("start_date")] + public string StartDate { get; set; } + + /// + /// 地铁站名称 + /// + [XmlElement("station_id")] + public string StationId { get; set; } + + /// + /// 操作类型: 0:普通(默认) 1:潜在 + /// + [XmlElement("type")] + public long Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs b/AlipaySDKNet/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs deleted file mode 100644 index 3ead87889..000000000 --- a/AlipaySDKNet/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// AlipayDataDataserviceAntdacEasyserviceQueryModel Data Structure. - /// - [Serializable] - public class AlipayDataDataserviceAntdacEasyserviceQueryModel : AopObject - { - /// - /// 调用方法id+询问antdac应用开发者获取+每个方法id对应一个真实调用的接口 - /// - [XmlElement("method_id")] - public string MethodId { get; set; } - - /// - /// 方法所需参数+json字符串格式+method_id接口所需的参数 - /// - [XmlElement("parameter_json")] - public string ParameterJson { get; set; } - } -} diff --git a/AlipaySDKNet/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs b/AlipaySDKNet/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs deleted file mode 100644 index 75a9bfcd9..000000000 --- a/AlipaySDKNet/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// AlipayDataDataserviceLbsDiscountBatchqueryModel Data Structure. - /// - [Serializable] - public class AlipayDataDataserviceLbsDiscountBatchqueryModel : AopObject - { - /// - /// 媒体编号,使用前需要找业务申请 ,不申请直接调用会失败 - /// - [XmlElement("channel")] - public string Channel { get; set; } - - /// - /// 手机IMEI号,imei、user_id、mobile三者必须且只能填一个 - /// - [XmlElement("imei")] - public string Imei { get; set; } - - /// - /// 纬度 - /// - [XmlElement("latitude")] - public string Latitude { get; set; } - - /// - /// 经度 - /// - [XmlElement("longitude")] - public string Longitude { get; set; } - - /// - /// 手机号码,imei、user_id、mobile三者必须且只能填一个 - /// - [XmlElement("mobile")] - public string Mobile { get; set; } - - /// - /// 输出的券列表大小 - /// - [XmlElement("size")] - public long Size { get; set; } - - /// - /// 支付宝用户ID,imei、user_id、mobile三者必须且只能填一个 - /// - [XmlElement("user_id")] - public string UserId { get; set; } - } -} diff --git a/AlipaySDKNet/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs b/AlipaySDKNet/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs new file mode 100644 index 000000000..c3cab051b --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayOpenContentContentlibYoukuvideoauditSendModel Data Structure. + /// + [Serializable] + public class AlipayOpenContentContentlibYoukuvideoauditSendModel : AopObject + { + /// + /// 审核后状态:allowed 审核通 过,blocked 屏蔽驳回, censoring 审核中 + /// + [XmlElement("action")] + public string Action { get; set; } + + /// + /// 扩展信息,json格式 + /// + [XmlElement("ext_info")] + public string ExtInfo { get; set; } + + /// + /// 审核前状态:allowed 审核通 过,blocked 屏蔽驳回, censoring 审核中 + /// + [XmlElement("old_action")] + public string OldAction { get; set; } + + /// + /// 审核来源,1表示审核-一审、 2表示审核-二审、3表示审核- 三审、4表示审核-综合审、 5表示审核-修改审, 30表示播 控, 31表示版权解除屏蔽操 作,32VMS解屏蔽,33表示视 频替换 40来疯先发后审 41 表 示来疯审核 + /// + [XmlElement("source")] + public string Source { get; set; } + + /// + /// 视频ID + /// + [XmlElement("vid")] + public string Vid { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs b/AlipaySDKNet/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs new file mode 100644 index 000000000..8ef291ec5 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs @@ -0,0 +1,42 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayOverseasTravelFliggyAuthorityQueryModel Data Structure. + /// + [Serializable] + public class AlipayOverseasTravelFliggyAuthorityQueryModel : AopObject + { + /// + /// 支付宝运营店ID + /// + [XmlElement("global_shop_id")] + public string GlobalShopId { get; set; } + + /// + /// 登录账户的操作员ID + /// + [XmlElement("operator_id")] + public string OperatorId { get; set; } + + /// + /// 用户类型: 主账户 or 操作员. 主账号:MAIN_ACCOUNT 操作员:OPERATOR + /// + [XmlElement("operator_type")] + public string OperatorType { get; set; } + + /// + /// 登录账户归属的机构PID + /// + [XmlElement("owner_id")] + public string OwnerId { get; set; } + + /// + /// 飞猪门店ID + /// + [XmlElement("store_id")] + public string StoreId { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayOverseasTravelFliggyStoreModifyModel.cs b/AlipaySDKNet/Domain/AlipayOverseasTravelFliggyStoreModifyModel.cs new file mode 100644 index 000000000..c443686a4 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayOverseasTravelFliggyStoreModifyModel.cs @@ -0,0 +1,36 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayOverseasTravelFliggyStoreModifyModel Data Structure. + /// + [Serializable] + public class AlipayOverseasTravelFliggyStoreModifyModel : AopObject + { + /// + /// 错误码 + /// + [XmlElement("code")] + public string Code { get; set; } + + /// + /// 主体数据 + /// + [XmlElement("data")] + public StoreInfo Data { get; set; } + + /// + /// 请求消息 + /// + [XmlElement("message")] + public string Message { get; set; } + + /// + /// 成功 + /// + [XmlElement("success")] + public bool Success { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayPayApplepayTransactionauthtokenCreateModel.cs b/AlipaySDKNet/Domain/AlipayPayApplepayTransactionauthtokenCreateModel.cs new file mode 100644 index 000000000..79cb50b7c --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayPayApplepayTransactionauthtokenCreateModel.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayApplepayTransactionauthtokenCreateModel Data Structure. + /// + [Serializable] + public class AlipayPayApplepayTransactionauthtokenCreateModel : AopObject + { + /// + /// 设备id + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// 卡id + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 卡id列表,与卡id两者不能同时为空 + /// + [XmlArray("provisioning_bundle_identifiers")] + [XmlArrayItem("string")] + public List ProvisioningBundleIdentifiers { get; set; } + + /// + /// 推送通知给wagu设备的token + /// + [XmlElement("push_token")] + public string PushToken { get; set; } + + /// + /// uid + /// + [XmlElement("reference_identifier")] + public string ReferenceIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayPayCodecApplepayBarcodeeventNotifyModel.cs b/AlipaySDKNet/Domain/AlipayPayCodecApplepayBarcodeeventNotifyModel.cs new file mode 100644 index 000000000..0abcb29a6 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayPayCodecApplepayBarcodeeventNotifyModel.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecApplepayBarcodeeventNotifyModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecApplepayBarcodeeventNotifyModel : AopObject + { + /// + /// 码的id。{Identifier for this credential} + /// + [XmlElement("barcode_identifier")] + public string BarcodeIdentifier { get; set; } + + /// + /// 上报事件,Base64 encoded UTF-8 bytes of Event Data JSON object defined below. + /// + [XmlElement("event")] + public string Event { get; set; } + + /// + /// 上报时间的签名,Base64 encoded PKCS#7 detached ECDSA signature. Signature data is generated over the SHA- 256 hash of Base64 decoded event bytes。 + /// + [XmlElement("signature")] + public string Signature { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayPayCodecHschoolDecodeUseModel.cs b/AlipaySDKNet/Domain/AlipayPayCodecHschoolDecodeUseModel.cs new file mode 100644 index 000000000..a27fb6bd9 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayPayCodecHschoolDecodeUseModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayPayCodecHschoolDecodeUseModel Data Structure. + /// + [Serializable] + public class AlipayPayCodecHschoolDecodeUseModel : AopObject + { + /// + /// 码值 + /// + [XmlElement("code_value")] + public string CodeValue { get; set; } + + /// + /// 机构号 + /// + [XmlElement("institution_code")] + public string InstitutionCode { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayTradeApplepayAuthenticationSubmitModel.cs b/AlipaySDKNet/Domain/AlipayTradeApplepayAuthenticationSubmitModel.cs new file mode 100644 index 000000000..b9e2b53b4 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayTradeApplepayAuthenticationSubmitModel.cs @@ -0,0 +1,38 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// AlipayTradeApplepayAuthenticationSubmitModel Data Structure. + /// + [Serializable] + public class AlipayTradeApplepayAuthenticationSubmitModel : AopObject + { + /// + /// ApplePay核身鉴权结果,包括:支付密码、用户确认、数字签名 + /// + [XmlArray("authentication_results")] + [XmlArrayItem("authentication_result")] + public List AuthenticationResults { get; set; } + + /// + /// Apple端的设备ID + /// + [XmlElement("device_identifier")] + public string DeviceIdentifier { get; set; } + + /// + /// Apple绑定的BundleId + /// + [XmlElement("dpan_identifier")] + public string DpanIdentifier { get; set; } + + /// + /// 交易标识 + /// + [XmlElement("transaction_identifier")] + public string TransactionIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AlipayTradeWapPayModel.cs b/AlipaySDKNet/Domain/AlipayTradeWapPayModel.cs index 3b9429fed..888f9168b 100644 --- a/AlipaySDKNet/Domain/AlipayTradeWapPayModel.cs +++ b/AlipaySDKNet/Domain/AlipayTradeWapPayModel.cs @@ -1,5 +1,6 @@ using System; using System.Xml.Serialization; +using System.Collections.Generic; namespace Aop.Api.Domain { @@ -51,6 +52,13 @@ public class AlipayTradeWapPayModel : AopObject [XmlElement("extend_params")] public ExtendParams ExtendParams { get; set; } + /// + /// 订单包含的商品列表信息,json格式,其它说明详见商品明细说明 + /// + [XmlArray("goods_detail")] + [XmlArrayItem("goods_detail")] + public List GoodsDetail { get; set; } + /// /// 商品主类型 :0-虚拟类商品,1-实物类商品 /// diff --git a/AlipaySDKNet/Domain/AlipayUserApplepayOtpSendModel.cs b/AlipaySDKNet/Domain/AlipayUserApplepayOtpSendModel.cs new file mode 100644 index 000000000..3cd460ac5 --- /dev/null +++ b/AlipaySDKNet/Domain/AlipayUserApplepayOtpSendModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AlipayUserApplepayOtpSendModel Data Structure. + /// + [Serializable] + public class AlipayUserApplepayOtpSendModel : AopObject + { + /// + /// 卡id(由固定前缀+32位数字构成) + /// + [XmlElement("provisioning_bundle_identifier")] + public string ProvisioningBundleIdentifier { get; set; } + + /// + /// 校验方法标识 + /// + [XmlElement("resolution_method_identifier")] + public string ResolutionMethodIdentifier { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AntlbsKBDiscountInfo.cs b/AlipaySDKNet/Domain/AntlbsKBDiscountInfo.cs deleted file mode 100644 index 49e875efd..000000000 --- a/AlipaySDKNet/Domain/AntlbsKBDiscountInfo.cs +++ /dev/null @@ -1,144 +0,0 @@ -using System; -using System.Xml.Serialization; - -namespace Aop.Api.Domain -{ - /// - /// AntlbsKBDiscountInfo Data Structure. - /// - [Serializable] - public class AntlbsKBDiscountInfo : AopObject - { - /// - /// 全场代金的门槛金额 - /// - [XmlElement("apply_condition")] - public string ApplyCondition { get; set; } - - /// - /// 买M送N的描述 - /// - [XmlElement("buy_send_desc")] - public string BuySendDesc { get; set; } - - /// - /// 折扣率 仅当券类型为折扣券时有效 有效折扣率取值范围0.11-0.99 仅允许保留小数点后两位 - /// - [XmlElement("discount")] - public string Discount { get; set; } - - /// - /// 最近店铺离当前用户的距离 - /// - [XmlElement("distance")] - public string Distance { get; set; } - - /// - /// 优惠结束时间 - /// - [XmlElement("end_time")] - public string EndTime { get; set; } - - /// - /// 券的图片地址 - /// - [XmlElement("image_url")] - public string ImageUrl { get; set; } - - /// - /// 优惠id - /// - [XmlElement("item_id")] - public string ItemId { get; set; } - - /// - /// 券的名称 - /// - [XmlElement("item_name")] - public string ItemName { get; set; } - - /// - /// 商品的一些标签 - /// - [XmlElement("label")] - public string Label { get; set; } - - /// - /// 减至券的原价 - /// - [XmlElement("original_price")] - public string OriginalPrice { get; set; } - - /// - /// 每满thresholdPrice元减perPrice元,封顶topPrice元 - /// - [XmlElement("per_price")] - public string PerPrice { get; set; } - - /// - /// 当券类型是代金券的时候,这个字段代表实际金额;当券类型是减至券的时候,这个字段代表减至到的金额 - /// - [XmlElement("price")] - public string Price { get; set; } - - /// - /// 券推荐语 - /// - [XmlElement("reason")] - public string Reason { get; set; } - - /// - /// 买A送B中,B的描述 - /// - [XmlElement("send_item_name")] - public string SendItemName { get; set; } - - /// - /// 门店id - /// - [XmlElement("shop_id")] - public string ShopId { get; set; } - - /// - /// 券的店铺名 - /// - [XmlElement("shop_name")] - public string ShopName { get; set; } - - /// - /// 已领数 - /// - [XmlElement("sold")] - public string Sold { get; set; } - - /// - /// 优惠开始时间 - /// - [XmlElement("start_time")] - public string StartTime { get; set; } - - /// - /// 每满thresholdPrice元减perPrice元,封顶topPrice元 - /// - [XmlElement("threshold_price")] - public string ThresholdPrice { get; set; } - - /// - /// 每满减用的字段:每满thresholdPrice元减perPrice元,封顶topPrice元 - /// - [XmlElement("top_price")] - public string TopPrice { get; set; } - - /// - /// 目前有discount:折扣券;cash:代金券;exchange:兑换券;limit_reduce_cash:减至券 - /// - [XmlElement("type")] - public string Type { get; set; } - - /// - /// 券二级类型。all_discount:全场折扣;single_discount:单品折扣;all_cash:全场代金;single_cash:单品代金 - /// - [XmlElement("vol_type")] - public string VolType { get; set; } - } -} diff --git a/AlipaySDKNet/Domain/AnttechBlockchainFinanceRiskWarningAddModel.cs b/AlipaySDKNet/Domain/AnttechBlockchainFinanceRiskWarningAddModel.cs new file mode 100644 index 000000000..0371fd5e7 --- /dev/null +++ b/AlipaySDKNet/Domain/AnttechBlockchainFinanceRiskWarningAddModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AnttechBlockchainFinanceRiskWarningAddModel Data Structure. + /// + [Serializable] + public class AnttechBlockchainFinanceRiskWarningAddModel : AopObject + { + /// + /// 外部风控编号 + /// + [XmlElement("out_risk_id")] + public string OutRiskId { get; set; } + + /// + /// 风控详情 + /// + [XmlElement("risk_info")] + public string RiskInfo { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/AuthenticationResult.cs b/AlipaySDKNet/Domain/AuthenticationResult.cs new file mode 100644 index 000000000..2ed0344ba --- /dev/null +++ b/AlipaySDKNet/Domain/AuthenticationResult.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// AuthenticationResult Data Structure. + /// + [Serializable] + public class AuthenticationResult : AopObject + { + /// + /// 已加密的鉴权数据 + /// + [XmlElement("authentication_data")] + public string AuthenticationData { get; set; } + + /// + /// 鉴权类型,如:支付密码、数字签名 + /// + [XmlElement("authentication_mechanism")] + public string AuthenticationMechanism { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/BarcodeEventResponseHeader.cs b/AlipaySDKNet/Domain/BarcodeEventResponseHeader.cs new file mode 100644 index 000000000..a52906998 --- /dev/null +++ b/AlipaySDKNet/Domain/BarcodeEventResponseHeader.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BarcodeEventResponseHeader Data Structure. + /// + [Serializable] + public class BarcodeEventResponseHeader : 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/BaseOpenApiResponseHeaderDTO.cs b/AlipaySDKNet/Domain/BaseOpenApiResponseHeaderDTO.cs new file mode 100644 index 000000000..65ba65748 --- /dev/null +++ b/AlipaySDKNet/Domain/BaseOpenApiResponseHeaderDTO.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// BaseOpenApiResponseHeaderDTO Data Structure. + /// + [Serializable] + public class BaseOpenApiResponseHeaderDTO : AopObject + { + /// + /// http状态码 + /// + [XmlElement("status_code")] + public string StatusCode { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/FinanceInvoiceInfo.cs b/AlipaySDKNet/Domain/FinanceInvoiceInfo.cs index 38db07ebf..2cd5b06f1 100644 --- a/AlipaySDKNet/Domain/FinanceInvoiceInfo.cs +++ b/AlipaySDKNet/Domain/FinanceInvoiceInfo.cs @@ -10,11 +10,17 @@ namespace Aop.Api.Domain public class FinanceInvoiceInfo : AopObject { /// - /// 发票金额,以元为单位的,精确到小数点后2位 + /// 发票金额(不含税),以元为单位的,精确到小数点后2位 /// [XmlElement("amount")] public string Amount { get; set; } + /// + /// 发票金额(含税) + /// + [XmlElement("amount_with_tax")] + public string AmountWithTax { get; set; } + /// /// UTC标准格式 /// @@ -27,6 +33,12 @@ public class FinanceInvoiceInfo : AopObject [XmlElement("check_code")] public string CheckCode { get; set; } + /// + /// 发票对应合同编号 + /// + [XmlElement("contract_no")] + public string ContractNo { get; set; } + /// /// 发票影印件信息 /// @@ -44,5 +56,11 @@ public class FinanceInvoiceInfo : AopObject /// [XmlElement("invoice_number")] public string InvoiceNumber { get; set; } + + /// + /// 发票类型:专票SPECIAL,普票REGULAR,电票DIGITAL + /// + [XmlElement("invoice_type")] + public string InvoiceType { get; set; } } } diff --git a/AlipaySDKNet/Domain/KoubeiCateringOrderInfoSyncModel.cs b/AlipaySDKNet/Domain/KoubeiCateringOrderInfoSyncModel.cs index 7e5d17086..baa097aea 100644 --- a/AlipaySDKNet/Domain/KoubeiCateringOrderInfoSyncModel.cs +++ b/AlipaySDKNet/Domain/KoubeiCateringOrderInfoSyncModel.cs @@ -16,7 +16,7 @@ public class KoubeiCateringOrderInfoSyncModel : AopObject public string Action { get; set; } /// - /// 操作内容信息,Map actionInfo = new HashMap(); actionInfo.put("NO","5100");// 取餐号 JSONObject.toJSONString(actionInfo);拒单原因/主动退款原因/同意退款原因包括:1、RECEIVE_TIMEOUT超时未接单,2、BUSY店铺太忙,无法接待3、DUPLICATE_ORDER重复订单,4、SHOP_CLOSE店铺已打烊5、SELL_OUT菜品售完,5、OTHER_REASON 其他原因,6、TABLE_NOT_EXIST 桌号不存在,7、LOW_VERSION 收银系统版本过低,8、SHOP_NOT_CONNECTED 没有门店绑定关系,9、MERCHANT_NOT_AUTHORIZED 商户没有授权,10、POS_UNCONNECTED POS关机或未联网,11、DISH_REASON 菜品原因;拒绝退款原因包括:1、RECEIVE_TIMEOUT用户已取餐,2、UNDER_LINE_NEGOTIATION和用户协商一致,线下解决,3、OTHER_REASON其他原因,4、ORDER_HAS_PARTIAL_REFUNDED订单发起部分退款,5、ORDER_HAS_REFUNDED订单发起整单退款,6、ORDER_HAS_VERIFIED订单发起核销;接单时action_info中加桌号(tableNo),tableNo和no只能传一种,并确定取餐方式;修改桌号时action_info中传tableNo,4、部分退款调用时,out_refund_no为外部退款单号来保证幂等,refund_amount为部分退款金额。5、排队顺序同步时,action_info中加排队序号queueNum + /// 操作内容信息,Map actionInfo = new HashMap(); actionInfo.put("NO","5100");// 取餐号 JSONObject.toJSONString(actionInfo);拒单原因/主动退款原因/同意退款原因包括:1、RECEIVE_TIMEOUT超时未接单,2、BUSY店铺太忙,无法接待3、DUPLICATE_ORDER重复订单,4、SHOP_CLOSE店铺已打烊5、SELL_OUT菜品售完,5、OTHER_REASON 其他原因,6、TABLE_NOT_EXIST 桌号不存在,7、LOW_VERSION 收银系统版本过低,8、SHOP_NOT_CONNECTED 没有门店绑定关系,9、MERCHANT_NOT_AUTHORIZED 商户没有授权,10、POS_UNCONNECTED POS关机或未联网,11、DISH_REASON 菜品原因;拒绝退款原因包括:1、RECEIVE_TIMEOUT用户已取餐,2、UNDER_LINE_NEGOTIATION和用户协商一致,线下解决,3、OTHER_REASON其他原因,4、ORDER_HAS_PARTIAL_REFUNDED订单发起部分退款,5、ORDER_HAS_REFUNDED订单发起整单退款,6、ORDER_HAS_VERIFIED订单发起核销; 接单时action_info中加桌号(tableNo),tableNo和no只能传一种,并确定取餐方式;修改桌号时action_info中传tableNo,thirdPayNo:外部订单号,estimatePickUpTime:预计取餐时间,格式为:${xx}-${yy},${xx}和${yy}为数字,单位为分钟 4、部分退款调用时,out_refund_no为外部退款单号来保证幂等,refund_amount为部分退款金额。5、排队顺序同步时,action_info中加排队序号queueNum /// [XmlElement("action_info")] public string ActionInfo { get; set; } diff --git a/AlipaySDKNet/Domain/PaginationCommGroup.cs b/AlipaySDKNet/Domain/PaginationCommGroup.cs new file mode 100644 index 000000000..f1e1fcdd8 --- /dev/null +++ b/AlipaySDKNet/Domain/PaginationCommGroup.cs @@ -0,0 +1,44 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// PaginationCommGroup Data Structure. + /// + [Serializable] + public class PaginationCommGroup : AopObject + { + /// + /// 出参列表 + /// + [XmlArray("list")] + [XmlArrayItem("kbdish_comm_group_info")] + public List List { get; set; } + + /// + /// 页码,表示当前页数 + /// + [XmlElement("page_no")] + public string PageNo { get; set; } + + /// + /// 每页条数 + /// + [XmlElement("page_size")] + public string PageSize { get; set; } + + /// + /// 总条数 + /// + [XmlElement("total_count")] + public string TotalCount { get; set; } + + /// + /// 总页数 + /// + [XmlElement("total_page")] + public string TotalPage { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/TransactionAmountDTO.cs b/AlipaySDKNet/Domain/TransactionAmountDTO.cs new file mode 100644 index 000000000..91a7e5fc7 --- /dev/null +++ b/AlipaySDKNet/Domain/TransactionAmountDTO.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TransactionAmountDTO Data Structure. + /// + [Serializable] + public class TransactionAmountDTO : AopObject + { + /// + /// 金额 + /// + [XmlElement("amount")] + public string Amount { get; set; } + + /// + /// 币种 + /// + [XmlElement("currency")] + public string Currency { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/TransactionAmountModifierDTO.cs b/AlipaySDKNet/Domain/TransactionAmountModifierDTO.cs new file mode 100644 index 000000000..11f6e5389 --- /dev/null +++ b/AlipaySDKNet/Domain/TransactionAmountModifierDTO.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Domain +{ + /// + /// TransactionAmountModifierDTO Data Structure. + /// + [Serializable] + public class TransactionAmountModifierDTO : AopObject + { + /// + /// 金额 + /// + [XmlElement("amount")] + public TransactionAmountDTO Amount { get; set; } + + /// + /// 金额类型说明 + /// + [XmlElement("description")] + public string Description { get; set; } + + /// + /// 金额类型 + /// + [XmlElement("type")] + public string Type { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/TransactionAuthenticationDetailDTO.cs b/AlipaySDKNet/Domain/TransactionAuthenticationDetailDTO.cs new file mode 100644 index 000000000..602c05c02 --- /dev/null +++ b/AlipaySDKNet/Domain/TransactionAuthenticationDetailDTO.cs @@ -0,0 +1,26 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// TransactionAuthenticationDetailDTO Data Structure. + /// + [Serializable] + public class TransactionAuthenticationDetailDTO : AopObject + { + /// + /// 支付打断推进方式 + /// + [XmlArray("authentication_mechanisms")] + [XmlArrayItem("string")] + public List AuthenticationMechanisms { get; set; } + + /// + /// 密码校验方式 + /// + [XmlElement("pin_format")] + public string PinFormat { get; set; } + } +} diff --git a/AlipaySDKNet/Domain/TransactionDetailDTO.cs b/AlipaySDKNet/Domain/TransactionDetailDTO.cs new file mode 100644 index 000000000..96824d99a --- /dev/null +++ b/AlipaySDKNet/Domain/TransactionDetailDTO.cs @@ -0,0 +1,104 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; + +namespace Aop.Api.Domain +{ + /// + /// TransactionDetailDTO Data Structure. + /// + [Serializable] + public class TransactionDetailDTO : AopObject + { + /// + /// 订单金额 + /// + [XmlElement("amount")] + public string Amount { get; set; } + + /// + /// 非实付金额列表 + /// + [XmlArray("amount_modifiers")] + [XmlArrayItem("transaction_amount_modifier_d_t_o")] + public List AmountModifiers { get; set; } + + /// + /// 支付中断推进方式 + /// + [XmlElement("authentication_details")] + public TransactionAuthenticationDetailDTO AuthenticationDetails { get; set; } + + /// + /// 条码id + /// + [XmlElement("barcode_identifier")] + public string BarcodeIdentifier { get; set; } + + /// + /// 币种 + /// + [XmlElement("currency_code")] + public string CurrencyCode { get; set; } + + /// + /// 卡id + /// + [XmlElement("dpan_identifier")] + public string DpanIdentifier { get; set; } + + /// + /// tradeNo + /// + [XmlElement("identifier")] + public string Identifier { get; set; } + + /// + /// xxx + /// + [XmlElement("merchant_name")] + public string MerchantName { get; set; } + + /// + /// 实付金额 + /// + [XmlElement("nominal_amount")] + public string NominalAmount { get; set; } + + /// + /// 支付主渠道 + /// + [XmlElement("primary_funding_source_description")] + public string PrimaryFundingSourceDescription { get; set; } + + /// + /// pId + /// + [XmlElement("raw_merchant_name")] + public string RawMerchantName { get; set; } + + /// + /// iso8601格式时间 + /// + [XmlElement("transaction_date")] + public string TransactionDate { get; set; } + + /// + /// 交易标识 + /// + [XmlElement("transaction_identifier")] + public string TransactionIdentifier { get; set; } + + /// + /// 交易状态 + /// + [XmlElement("transaction_status")] + public string TransactionStatus { get; set; } + + /// + /// 交易类型 + /// + [XmlElement("transaction_type")] + public string TransactionType { get; set; } + } +} diff --git a/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetrodetailQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetrodetailQueryRequest.cs new file mode 100644 index 000000000..f015fcc13 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetrodetailQueryRequest.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.metrodetail.query + /// + public class AlipayDataAiserviceCloudbusMetrodetailQueryRequest : IAopRequest + { + /// + /// 智慧公交--地铁OD对详情 + /// + 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.metrodetail.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/AlipayDataAiserviceCloudbusMetroodQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetroodQueryRequest.cs new file mode 100644 index 000000000..e42157826 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetroodQueryRequest.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.metrood.query + /// + public class AlipayDataAiserviceCloudbusMetroodQueryRequest : IAopRequest + { + /// + /// 智慧公交---地铁OD + /// + 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.metrood.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/AlipayDataAiserviceCloudbusMetrotimeQueryRequest.cs b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetrotimeQueryRequest.cs new file mode 100644 index 000000000..5c96507d2 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayDataAiserviceCloudbusMetrotimeQueryRequest.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.metrotime.query + /// + public class AlipayDataAiserviceCloudbusMetrotimeQueryRequest : 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.metrotime.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/AlipayOpenContentContentlibYoukuvideoauditSendRequest.cs b/AlipaySDKNet/Request/AlipayOpenContentContentlibYoukuvideoauditSendRequest.cs new file mode 100644 index 000000000..ad48d2d78 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayOpenContentContentlibYoukuvideoauditSendRequest.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.open.content.contentlib.youkuvideoaudit.send + /// + public class AlipayOpenContentContentlibYoukuvideoauditSendRequest : 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.open.content.contentlib.youkuvideoaudit.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/AlipayOverseasTravelFliggyAuthorityQueryRequest.cs b/AlipaySDKNet/Request/AlipayOverseasTravelFliggyAuthorityQueryRequest.cs new file mode 100644 index 000000000..53014df95 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayOverseasTravelFliggyAuthorityQueryRequest.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.overseas.travel.fliggy.authority.query + /// + public class AlipayOverseasTravelFliggyAuthorityQueryRequest : 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.overseas.travel.fliggy.authority.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/AlipayOverseasTravelFliggyStoreModifyRequest.cs b/AlipaySDKNet/Request/AlipayOverseasTravelFliggyStoreModifyRequest.cs new file mode 100644 index 000000000..37d3d2246 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayOverseasTravelFliggyStoreModifyRequest.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.overseas.travel.fliggy.store.modify + /// + public class AlipayOverseasTravelFliggyStoreModifyRequest : 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.overseas.travel.fliggy.store.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/AlipayPayApplepayTransactionauthtokenCreateRequest.cs b/AlipaySDKNet/Request/AlipayPayApplepayTransactionauthtokenCreateRequest.cs new file mode 100644 index 000000000..dab0ffb56 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayPayApplepayTransactionauthtokenCreateRequest.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.applepay.transactionauthtoken.create + /// + public class AlipayPayApplepayTransactionauthtokenCreateRequest : IAopRequest + { + /// + /// 注册拉取支付结果的权限authToken + /// + 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.applepay.transactionauthtoken.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/AlipayPayCodecApplepayBarcodeeventNotifyRequest.cs b/AlipaySDKNet/Request/AlipayPayCodecApplepayBarcodeeventNotifyRequest.cs new file mode 100644 index 000000000..96d968c13 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayPayCodecApplepayBarcodeeventNotifyRequest.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.barcodeevent.notify + /// + public class AlipayPayCodecApplepayBarcodeeventNotifyRequest : 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.barcodeevent.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/AlipayPayCodecHschoolDecodeUseRequest.cs b/AlipaySDKNet/Request/AlipayPayCodecHschoolDecodeUseRequest.cs new file mode 100644 index 000000000..200390b65 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayPayCodecHschoolDecodeUseRequest.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.hschool.decode.use + /// + public class AlipayPayCodecHschoolDecodeUseRequest : IAopRequest + { + /// + /// 双离线码在线解码API + /// + 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.hschool.decode.use"; + } + + 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/AlipayTradeApplepayAuthenticationSubmitRequest.cs b/AlipaySDKNet/Request/AlipayTradeApplepayAuthenticationSubmitRequest.cs new file mode 100644 index 000000000..ede613b82 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayTradeApplepayAuthenticationSubmitRequest.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.trade.applepay.authentication.submit + /// + public class AlipayTradeApplepayAuthenticationSubmitRequest : 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.trade.applepay.authentication.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/AlipayUserApplepayOtpSendRequest.cs b/AlipaySDKNet/Request/AlipayUserApplepayOtpSendRequest.cs new file mode 100644 index 000000000..1073094d2 --- /dev/null +++ b/AlipaySDKNet/Request/AlipayUserApplepayOtpSendRequest.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.otp.send + /// + public class AlipayUserApplepayOtpSendRequest : IAopRequest + { + /// + /// ApplePay的easy开卡OTP发送 + /// + 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.otp.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/AnttechBlockchainFinanceRiskWarningAddRequest.cs b/AlipaySDKNet/Request/AnttechBlockchainFinanceRiskWarningAddRequest.cs new file mode 100644 index 000000000..b42bc5568 --- /dev/null +++ b/AlipaySDKNet/Request/AnttechBlockchainFinanceRiskWarningAddRequest.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.risk.warning.add + /// + public class AnttechBlockchainFinanceRiskWarningAddRequest : 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 "anttech.blockchain.finance.risk.warning.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/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs b/AlipaySDKNet/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs index 769a6dee7..ac6b3cfef 100644 --- a/AlipaySDKNet/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayBossFncApbillTotalbillamtQueryResponse.cs @@ -183,6 +183,12 @@ public class AlipayBossFncApbillTotalbillamtQueryResponse : AopResponse [XmlElement("mid")] public string Mid { get; set; } + /// + /// 税损扣除后月账单可关联发票金额 + /// + [XmlElement("new_can_invoice_amt")] + public MultiCurrencyMoneyOpenApi NewCanInvoiceAmt { get; set; } + /// /// 已付金额 /// diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetrodetailQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetrodetailQueryResponse.cs new file mode 100644 index 000000000..5400044ed --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetrodetailQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusMetrodetailQueryResponse. + /// + public class AlipayDataAiserviceCloudbusMetrodetailQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public MetroOdDetailResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetroodQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetroodQueryResponse.cs new file mode 100644 index 000000000..d49010410 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetroodQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusMetroodQueryResponse. + /// + public class AlipayDataAiserviceCloudbusMetroodQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public MetroOdDetailResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetrotimeQueryResponse.cs b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetrotimeQueryResponse.cs new file mode 100644 index 000000000..d07a1e510 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayDataAiserviceCloudbusMetrotimeQueryResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayDataAiserviceCloudbusMetrotimeQueryResponse. + /// + public class AlipayDataAiserviceCloudbusMetrotimeQueryResponse : AopResponse + { + /// + /// 结果 + /// + [XmlElement("result")] + public MetroOdDetailResult Result { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayOpenContentContentlibYoukuvideoauditSendResponse.cs b/AlipaySDKNet/Response/AlipayOpenContentContentlibYoukuvideoauditSendResponse.cs new file mode 100644 index 000000000..44ce3d1be --- /dev/null +++ b/AlipaySDKNet/Response/AlipayOpenContentContentlibYoukuvideoauditSendResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOpenContentContentlibYoukuvideoauditSendResponse. + /// + public class AlipayOpenContentContentlibYoukuvideoauditSendResponse : AopResponse + { + } +} diff --git a/AlipaySDKNet/Response/AlipayOverseasTravelFliggyAuthorityQueryResponse.cs b/AlipaySDKNet/Response/AlipayOverseasTravelFliggyAuthorityQueryResponse.cs new file mode 100644 index 000000000..5792c2d20 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayOverseasTravelFliggyAuthorityQueryResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOverseasTravelFliggyAuthorityQueryResponse. + /// + public class AlipayOverseasTravelFliggyAuthorityQueryResponse : AopResponse + { + /// + /// 错误码 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误描述 + /// + [XmlElement("error_msg")] + public string ErrorMsg { get; set; } + + /// + /// 是否有权限,true有权限,false无权限 + /// + [XmlElement("success")] + public bool Success { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayOverseasTravelFliggyStoreModifyResponse.cs b/AlipaySDKNet/Response/AlipayOverseasTravelFliggyStoreModifyResponse.cs new file mode 100644 index 000000000..a29125483 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayOverseasTravelFliggyStoreModifyResponse.cs @@ -0,0 +1,29 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayOverseasTravelFliggyStoreModifyResponse. + /// + public class AlipayOverseasTravelFliggyStoreModifyResponse : AopResponse + { + /// + /// 错误码 + /// + [XmlElement("error_code")] + public string ErrorCode { get; set; } + + /// + /// 错误原因 + /// + [XmlElement("error_msg")] + public string ErrorMsg { get; set; } + + /// + /// 回调处理是否成功,true标示处理成功,false标示处理失败 + /// + [XmlElement("success")] + public bool Success { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayPayApplepayTransactionauthtokenCreateResponse.cs b/AlipaySDKNet/Response/AlipayPayApplepayTransactionauthtokenCreateResponse.cs new file mode 100644 index 000000000..39289d758 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayPayApplepayTransactionauthtokenCreateResponse.cs @@ -0,0 +1,30 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayApplepayTransactionauthtokenCreateResponse. + /// + public class AlipayPayApplepayTransactionauthtokenCreateResponse : AopResponse + { + /// + /// 通知authToken + /// + [XmlElement("authentication_token")] + public string AuthenticationToken { get; set; } + + /// + /// 响应报文头部 + /// + [XmlElement("response_header")] + public BaseOpenApiResponseHeaderDTO ResponseHeader { get; set; } + + /// + /// 是否允许通知状态转移 + /// + [XmlElement("supports_settlement")] + public bool SupportsSettlement { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayPayCodecApplepayBarcodeeventNotifyResponse.cs b/AlipaySDKNet/Response/AlipayPayCodecApplepayBarcodeeventNotifyResponse.cs new file mode 100644 index 000000000..bc869b7c3 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayPayCodecApplepayBarcodeeventNotifyResponse.cs @@ -0,0 +1,24 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecApplepayBarcodeeventNotifyResponse. + /// + public class AlipayPayCodecApplepayBarcodeeventNotifyResponse : 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 BarcodeEventResponseHeader ResponseHeader { get; set; } + + /// + /// 当前付款码是否有交易发生。 + /// + [XmlElement("transaction_available")] + public string TransactionAvailable { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayPayCodecHschoolDecodeUseResponse.cs b/AlipaySDKNet/Response/AlipayPayCodecHschoolDecodeUseResponse.cs new file mode 100644 index 000000000..f57677ea7 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayPayCodecHschoolDecodeUseResponse.cs @@ -0,0 +1,35 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AlipayPayCodecHschoolDecodeUseResponse. + /// + public class AlipayPayCodecHschoolDecodeUseResponse : AopResponse + { + /// + /// 学生短号 + /// + [XmlElement("feature_code")] + public string FeatureCode { get; set; } + + /// + /// 红码 : "red" 黄码 :"yellow" 绿码 : "green" 审核中 : "init" 未找到 : "notFound" + /// + [XmlElement("health_status")] + public string HealthStatus { get; set; } + + /// + /// 学校编号(外标) + /// + [XmlElement("school_std_code")] + public string SchoolStdCode { get; set; } + + /// + /// 学号 + /// + [XmlElement("student_no")] + public string StudentNo { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayTradeApplepayAuthenticationSubmitResponse.cs b/AlipaySDKNet/Response/AlipayTradeApplepayAuthenticationSubmitResponse.cs new file mode 100644 index 000000000..cac2a26b8 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayTradeApplepayAuthenticationSubmitResponse.cs @@ -0,0 +1,45 @@ +using System; +using System.Xml.Serialization; +using System.Collections.Generic; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayTradeApplepayAuthenticationSubmitResponse. + /// + public class AlipayTradeApplepayAuthenticationSubmitResponse : AopResponse + { + /// + /// 核身错误信息 + /// + [XmlElement("authentication_error")] + public string AuthenticationError { get; set; } + + /// + /// 失败时的鉴权重试机制 + /// + [XmlArray("fallback_authentication_mechanisms")] + [XmlArrayItem("string")] + public List FallbackAuthenticationMechanisms { get; set; } + + /// + /// applePay公用响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + + /// + /// 鉴权重试机制 + /// + [XmlArray("retry_authentication_mechanisms")] + [XmlArrayItem("string")] + public List RetryAuthenticationMechanisms { get; set; } + + /// + /// 交易状态 + /// + [XmlElement("updated_transaction_status")] + public string UpdatedTransactionStatus { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserApplepayOtpSendResponse.cs b/AlipaySDKNet/Response/AlipayUserApplepayOtpSendResponse.cs new file mode 100644 index 000000000..918366883 --- /dev/null +++ b/AlipaySDKNet/Response/AlipayUserApplepayOtpSendResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Xml.Serialization; +using Aop.Api.Domain; + +namespace Aop.Api.Response +{ + /// + /// AlipayUserApplepayOtpSendResponse. + /// + public class AlipayUserApplepayOtpSendResponse : AopResponse + { + /// + /// 响应头 + /// + [XmlElement("response_header")] + public OpenApiResponseHeader ResponseHeader { get; set; } + } +} diff --git a/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs index f4c3ced30..df8c3a54d 100644 --- a/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs +++ b/AlipaySDKNet/Response/AlipayUserApplepayProvisioningbundleQueryResponse.cs @@ -9,6 +9,12 @@ namespace Aop.Api.Response /// public class AlipayUserApplepayProvisioningbundleQueryResponse : AopResponse { + /// + /// 卡状态 + /// + [XmlElement("pass_state")] + public string PassState { get; set; } + /// /// 卡模型 /// diff --git a/AlipaySDKNet/Response/AnttechBlockchainFinanceRiskWarningAddResponse.cs b/AlipaySDKNet/Response/AnttechBlockchainFinanceRiskWarningAddResponse.cs new file mode 100644 index 000000000..233d76c5f --- /dev/null +++ b/AlipaySDKNet/Response/AnttechBlockchainFinanceRiskWarningAddResponse.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Aop.Api.Response +{ + /// + /// AnttechBlockchainFinanceRiskWarningAddResponse. + /// + public class AnttechBlockchainFinanceRiskWarningAddResponse : AopResponse + { + /// + /// 提交结果 + /// + [XmlElement("submit_result")] + public string SubmitResult { 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 。