duhe
2025-01-04 25e8a95cac976a5d8b729462f70166ac1d4af6df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System.Collections.Generic;
using Top.Api.Util;
 
namespace Top.Api.Report
{
    public class TopSdkFeedbackUploadRequest : BaseTopRequest<TopSdkFeedbackUploadResponse>
    {
 
        public string Type { get; set; }
 
        public string Content { get; set; }
 
        public override string GetApiName()
        {
            return "taobao.top.sdk.feedback.upload";
        }
 
        public override void Validate()
        {
            RequestValidator.ValidateRequired("Type", Type);
        }
 
        public override IDictionary<string, string> GetParameters()
        {
            TopDictionary parameters = new TopDictionary();
            parameters.Add("type", this.Type);
            parameters.Add("content", this.Content);
            return parameters;
        }
    }
}