using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOpenAuthIndustryPlatformCreateTokenModel Data Structure. /// [Serializable] public class AlipayOpenAuthIndustryPlatformCreateTokenModel : AopObject { /// /// isvēš„appid /// [JsonProperty("isv_appid")] public string IsvAppid { get; set; } /// /// auth_mycar_violation /// [JsonProperty("scope")] public string Scope { get; set; } } }