NewGaoKaoApi/PaymentSDK/AliPay/Domain/SmartAutomatScene.cs

25 lines
789 B
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>
/// SmartAutomatScene Data Structure.
/// </summary>
[Serializable]
public class SmartAutomatScene : AopObject
{
/// <summary>
/// 自助售货机一级场景,可取值如下: SCHOOL MALL STATION FACTORY COMMUNITY OFFICE HOSPITAL GOVERNMENT SCENIC_SPOT OTHERS
/// </summary>
[XmlElement("level_1")]
public string Level1 { get; set; }
/// <summary>
/// 自助售货机二级场景,可取值如下(不同的一级场景下可取值不同详见scene说明) 001 002 003 004 005 006 007
/// </summary>
[XmlElement("level_2")]
public string Level2 { get; set; }
}
}