
com.aliyuncs.rtc.model.v20180111.CreateChannelTokenRequest Maven / Gradle / Ivy
/*
* 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.aliyuncs.rtc.model.v20180111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class CreateChannelTokenRequest extends RpcAcsRequest {
public CreateChannelTokenRequest() {
super("rtc", "2018-01-11", "CreateChannelToken", "rtc");
}
private String sessionId;
private String uId;
private Long ownerId;
private String nonce;
private String appId;
private String channelId;
public String getSessionId() {
return this.sessionId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
if(sessionId != null){
putQueryParameter("SessionId", sessionId);
}
}
public String getUId() {
return this.uId;
}
public void setUId(String uId) {
this.uId = uId;
if(uId != null){
putQueryParameter("UId", uId);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getNonce() {
return this.nonce;
}
public void setNonce(String nonce) {
this.nonce = nonce;
if(nonce != null){
putQueryParameter("Nonce", nonce);
}
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
if(appId != null){
putQueryParameter("AppId", appId);
}
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
if(channelId != null){
putQueryParameter("ChannelId", channelId);
}
}
@Override
public Class getResponseClass() {
return CreateChannelTokenResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy