You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.8 KiB
C#

This file contains ambiguous Unicode characters!

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

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEcoCplifeBasicserviceInitializeResponse.
/// </summary>
public class AlipayEcoCplifeBasicserviceInitializeResponse : AopResponse
{
/// <summary>
/// 若初始化的服务类型为物业缴费账单上传模式并且对应的物业账号事前未完成对支付宝平台代创建缴费交易的授权接口除了返回对应错误码会通过本参数返回授权URL。请开发者发给物业人员用对应的物业支付宝账号登录完成第三方授权。
/// </summary>
[XmlElement("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>
[XmlElement("next_action")]
public string NextAction { get; set; }
/// <summary>
/// 若服务成功初始化,则返回当前状态。 服务初始化后默认为下线状态,需要完成开发和验证,并提交服务上线申请。由支付宝小二审核通过后完成服务和小区上线。
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}