AlipayAccountCashpoolCreateModel.cs 954 B

12345678910111213141516171819202122232425262728293031323334
  1. using System.Text.Json.Serialization;
  2. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayAccountCashpoolCreateModel Data Structure.
  6. /// </summary>
  7. public class AlipayAccountCashpoolCreateModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 设置资金池名称
  11. /// </summary>
  12. [JsonPropertyName("cash_pool_name")]
  13. public string CashPoolName { get; set; }
  14. /// <summary>
  15. /// INITIAL/RUN/STOP,初始、运行、暂停状态
  16. /// </summary>
  17. [JsonPropertyName("cash_pool_status")]
  18. public string CashPoolStatus { get; set; }
  19. /// <summary>
  20. /// 备注信息
  21. /// </summary>
  22. [JsonPropertyName("memo")]
  23. public string Memo { get; set; }
  24. /// <summary>
  25. /// 提交人名称
  26. /// </summary>
  27. [JsonPropertyName("operator")]
  28. public string Operator { get; set; }
  29. }
  30. }