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.

24 lines
610 B
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>
/// KoubeiItemCreateResponse.
/// </summary>
public class KoubeiItemCreateResponse : AopResponse
{
/// <summary>
/// 口碑体系内部商品的唯一标识后续的增删改查接口都使用该ID作为主键
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 即入参中的request_id
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}