send-subscribe-message-input.ts 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET
  5. * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. * Contact: 515096995@qq.com
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. import { DataItem } from './data-item';
  15. /**
  16. *
  17. * @export
  18. * @interface SendSubscribeMessageInput
  19. */
  20. export interface SendSubscribeMessageInput {
  21. /**
  22. * 订阅模板Id
  23. * @type {string}
  24. * @memberof SendSubscribeMessageInput
  25. */
  26. templateId: string;
  27. /**
  28. * 接收者的OpenId
  29. * @type {string}
  30. * @memberof SendSubscribeMessageInput
  31. */
  32. toUserOpenId: string;
  33. /**
  34. * 模板内容,格式形如 { \"key1\": { \"value\": any }, \"key2\": { \"value\": any } }的object
  35. * @type {{ [key: string]: DataItem; }}
  36. * @memberof SendSubscribeMessageInput
  37. */
  38. data: { [key: string]: DataItem; };
  39. /**
  40. * 跳转小程序类型
  41. * @type {string}
  42. * @memberof SendSubscribeMessageInput
  43. */
  44. miniprogramState?: string | null;
  45. /**
  46. * 语言类型
  47. * @type {string}
  48. * @memberof SendSubscribeMessageInput
  49. */
  50. language?: string | null;
  51. }