You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
774 B
C#

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