NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarMaintainServi...

31 lines
1.1 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>
/// AlipayEcoMycarMaintainServiceproductUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarMaintainServiceproductUpdateModel : AopObject
{
/// <summary>
/// 请求操作INSERT新增MODIFY修改DELETE删除QUERY查询
/// </summary>
[XmlElement("operation_type")]
public string OperationType { get; set; }
/// <summary>
/// 外部服务商品标示ISV保证唯一性。ISV同一门店同一服务项同一产品名称只能配置一个商品。存在同一服务项类目对应多个产品情况5座普通洗车、5座SUV洗车
/// </summary>
[XmlElement("out_product_id")]
public string OutProductId { get; set; }
/// <summary>
/// 查询删除:否 新增修改:必填
/// </summary>
[XmlElement("shop_product")]
public MaitainShopProduct ShopProduct { get; set; }
}
}