NewGaoKaoApi/PaymentSDK/AliPay/Domain/MallCardUpdate.cs

43 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

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

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// MallCardUpdate Data Structure.
/// </summary>
[Serializable]
public class MallCardUpdate : AopObject
{
/// <summary>
/// 资金卡余额,单位:元,精确到小数点后两位。
/// </summary>
[XmlElement("balance")]
public string Balance { get; set; }
/// <summary>
/// 会员业务卡号 说明: 1、开卡成功后返回该参数需要保存留用 2、开卡/更新/删卡/查询卡接口请求中都需要传该参数;
/// </summary>
[XmlElement("biz_card_no")]
public string BizCardNo { get; set; }
/// <summary>
/// 商户外部会员卡卡号 说明: 1、会员卡开卡接口如果卡类型为外部会员卡请求中则必须提供该参数 2、更新、查询、删除等接口请求中则不需要提供该参数值
/// </summary>
[XmlElement("external_card_no")]
public string ExternalCardNo { get; set; }
/// <summary>
/// 会员卡等级(由商户自定义,并可以在卡模板创建时,定义等级信息)
/// </summary>
[XmlElement("level")]
public string Level { get; set; }
/// <summary>
/// 会员卡积分,积分必须为数字型
/// </summary>
[XmlElement("point")]
public long Point { get; set; }
}
}