Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoCplifeBasicserviceInitializeResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoCplifeBasicserviceInitializeResponse.
/// </summary>
public class AlipayEcoCplifeBasicserviceInitializeResponse : AopResponse
{
/// <summary>
/// 若初始化的服务类型为物业缴费账单上传模式并且对应的物业账号事前未完成对支付宝平台代创建缴费交易的授权接口除了返回对应错误码会通过本参数返回授权URL。请开发者发给物业人员用对应的物业支付宝账号登录完成第三方授权。
/// </summary>
[JsonProperty("bill_pay_auth_url")]
public string BillPayAuthUrl { get; set; }
/// <summary>
/// 服务初始化成功后,若从当前状态到下一状态需要完成下一步条件代码,则返回该字段,否则不返回。 操作主体有: INVOKER - 接口调用方 MERCHANT - 物业公司 AUDITOR - 平台审核方
/// 条件代码包括但不限于: WAIT_SERVICE_PROVISION - 等待基础服务初始化 WAIT_PROD_VERIFICATION - 等待在生产环境通过自测 WAIT_ONLINE_APPLICATION -
/// 等待提起上线申请目前支持开发者调用alipay.eco.cplife.basicservice.modify接口发起上线申请 WAIT_CONFIRMATION - 等待相关方确认 WAIT_AUDITING - 等待审核
/// </summary>
[JsonProperty("next_action")]
public string NextAction { get; set; }
/// <summary>
/// 若服务成功初始化,则返回当前状态。 服务初始化后默认为下线状态,需要完成开发和验证,并提交服务上线申请。由支付宝小二审核通过后完成服务和小区上线。
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}