Baidu.SDK.Push.Dto.TagDeleteRequest.TagDeleteRequest C# (CSharp) Method

TagDeleteRequest() public method

delete_tag 请求参数
服务端删除用户标签。 特别地,当user_id被提交时,服务端将只会完成解除该用户与tag绑定关系的操作。 注意:该操作不可恢复,请谨慎使用。
public TagDeleteRequest ( string tag ) : System
tag string
return System
        public TagDeleteRequest(
            string tag
           )
        {
            Method = Methods.delete_tag;

            Tag = tag;

            Timestamp = DateTime.Now;
        }
TagDeleteRequest