
com.tencentcloudapi.iotcloud.v20180614.models.BatchPublishMessage Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.iotcloud.v20180614.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class BatchPublishMessage extends AbstractModel {
/**
* 消息发往的主题。为 Topic 权限中去除 ProductID 和 DeviceName 的部分,如 “event”
*/
@SerializedName("Topic")
@Expose
private String Topic;
/**
* 消息内容
*/
@SerializedName("Payload")
@Expose
private String Payload;
/**
* Get 消息发往的主题。为 Topic 权限中去除 ProductID 和 DeviceName 的部分,如 “event”
* @return Topic 消息发往的主题。为 Topic 权限中去除 ProductID 和 DeviceName 的部分,如 “event”
*/
public String getTopic() {
return this.Topic;
}
/**
* Set 消息发往的主题。为 Topic 权限中去除 ProductID 和 DeviceName 的部分,如 “event”
* @param Topic 消息发往的主题。为 Topic 权限中去除 ProductID 和 DeviceName 的部分,如 “event”
*/
public void setTopic(String Topic) {
this.Topic = Topic;
}
/**
* Get 消息内容
* @return Payload 消息内容
*/
public String getPayload() {
return this.Payload;
}
/**
* Set 消息内容
* @param Payload 消息内容
*/
public void setPayload(String Payload) {
this.Payload = Payload;
}
public BatchPublishMessage() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public BatchPublishMessage(BatchPublishMessage source) {
if (source.Topic != null) {
this.Topic = new String(source.Topic);
}
if (source.Payload != null) {
this.Payload = new String(source.Payload);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Topic", this.Topic);
this.setParamSimple(map, prefix + "Payload", this.Payload);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy