|
| 1 | +namespace SKIT.FlurlHttpClient.Wechat.Api.Models |
| 2 | +{ |
| 3 | + /// <summary> |
| 4 | + /// <para>表示 [POST] /channels/ec/league/headsupplier/secondheadsupplieritem/add 接口的请求。</para> |
| 5 | + /// </summary> |
| 6 | + public class ChannelsECLeagueHeadSupplierSecondHeadSupplierItemAddRequest : WechatApiRequest, IInferable<ChannelsECLeagueHeadSupplierSecondHeadSupplierItemAddRequest, ChannelsECLeagueHeadSupplierSecondHeadSupplierItemAddResponse> |
| 7 | + { |
| 8 | + /// <summary> |
| 9 | + /// 获取或设置机构合作计划 ID。与字段 <see cref="HeadSupplierItemLink"/> 二选一。 |
| 10 | + /// </summary> |
| 11 | + [Newtonsoft.Json.JsonProperty("cooperative_item_id")] |
| 12 | + [System.Text.Json.Serialization.JsonPropertyName("cooperative_item_id")] |
| 13 | + public long? CooperativeItemId { get; set; } |
| 14 | + |
| 15 | + /// <summary> |
| 16 | + /// 获取或设置机构推广商品链接。与字段 <see cref="CooperativeItemId"/> 二选一。 |
| 17 | + /// </summary> |
| 18 | + [Newtonsoft.Json.JsonProperty("head_supplier_item_link")] |
| 19 | + [System.Text.Json.Serialization.JsonPropertyName("head_supplier_item_link")] |
| 20 | + public string? HeadSupplierItemLink { get; set; } |
| 21 | + |
| 22 | + /// <summary> |
| 23 | + /// 获取或设置计划类型。 |
| 24 | + /// </summary> |
| 25 | + [Newtonsoft.Json.JsonProperty("plan_type")] |
| 26 | + [System.Text.Json.Serialization.JsonPropertyName("plan_type")] |
| 27 | + public int PlanType { get; set; } |
| 28 | + |
| 29 | + /// <summary> |
| 30 | + /// 获取或设置商品帮卖服务费率(单位:万分数)。 |
| 31 | + /// </summary> |
| 32 | + [Newtonsoft.Json.JsonProperty("service_ratio")] |
| 33 | + [System.Text.Json.Serialization.JsonPropertyName("service_ratio")] |
| 34 | + public int ServiceRatio { get; set; } |
| 35 | + |
| 36 | + /// <summary> |
| 37 | + /// 获取或设置定向的机构 AppId。 |
| 38 | + /// </summary> |
| 39 | + [Newtonsoft.Json.JsonProperty("to_head_supplier_appid")] |
| 40 | + [System.Text.Json.Serialization.JsonPropertyName("to_head_supplier_appid")] |
| 41 | + public string? ToHeadSupplierAppId { get; set; } |
| 42 | + |
| 43 | + /// <summary> |
| 44 | + /// 获取或设置开始时间戳。 |
| 45 | + /// </summary> |
| 46 | + [Newtonsoft.Json.JsonProperty("start_time")] |
| 47 | + [System.Text.Json.Serialization.JsonPropertyName("start_time")] |
| 48 | + public long? StartTimestamp { get; set; } |
| 49 | + |
| 50 | + /// <summary> |
| 51 | + /// 获取或设置结束时间戳。 |
| 52 | + /// </summary> |
| 53 | + [Newtonsoft.Json.JsonProperty("end_time")] |
| 54 | + [System.Text.Json.Serialization.JsonPropertyName("end_time")] |
| 55 | + public long? EndTimestamp { get; set; } |
| 56 | + } |
| 57 | +} |
0 commit comments