1
0

AlipayBossCsCssocialYqmessageQueryModel.cs 643 B

123456789101112131415161718
  1. using System;
  2. using Newtonsoft.Json;
  3. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  4. {
  5. /// <summary>
  6. /// AlipayBossCsCssocialYqmessageQueryModel Data Structure.
  7. /// </summary>
  8. [Serializable]
  9. public class AlipayBossCsCssocialYqmessageQueryModel : AlipayObject
  10. {
  11. /// <summary>
  12. /// 搜索条件字符串:搜索请求的JSON字符串,JSON字符串中: posKeyword: 正向关键词 associationKeyword:搭配关键词 negKeyword:排除关键词(负向关键词)
  13. /// </summary>
  14. [JsonProperty("search_criteria")]
  15. public string SearchCriteria { get; set; }
  16. }
  17. }