using OpenAuth.WebApi; namespace Infrastructure.CloudSdk.wayline; public class TopicServicesRequest : CommonTopicRequest { public TopicServicesRequest SetTid(string tid) { base.tid = tid; return this; } public TopicServicesRequest SetBid(string bid) { base.bid = bid; return this; } public TopicServicesRequest SetTimestamp(long? timestamp) { base.timestamp = timestamp; return this; } public TopicServicesRequest SetData(T data) { base.data = data; return this; } public string method { get; set; } public int need_reply { get; set; } public TopicServicesRequest SetMethod(string method) { this.method = method; return this; } }