All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jdcloud.sdk.service.openjrtc.model.AppInfoObject Maven / Gradle / Ivy

/*
 * Copyright 2018 JDCLOUD.COM
 *
 * 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.
 *
 * 
 * 
 *
 * 
 * Contact: 
 *
 * NOTE: This class is auto generated by the jdcloud code generator program.
 */

package com.jdcloud.sdk.service.openjrtc.model;


/**
 * 应用信息
 */
public class AppInfoObject  implements java.io.Serializable {

    private static final long serialVersionUID = 1L;

    /**
     * 应用ID
     */
    private String appId;

    /**
     * 应用名称
     */
    private String appName;

    /**
     * 应用状态: OPEN-启用, CLOSE-停用

     */
    private String status;

    /**
     * 应用默认创建的房间类型 1-小房间;2-大房间
     */
    private Integer roomType;

    /**
     * 计费类型: Duration-按时长

     */
    private String billType;

    /**
     * 创建时间(UTC)
     */
    private String createTime;


    /**
     * get 应用ID
     *
     * @return
     */
    public String getAppId() {
        return appId;
    }

    /**
     * set 应用ID
     *
     * @param appId
     */
    public void setAppId(String appId) {
        this.appId = appId;
    }

    /**
     * get 应用名称
     *
     * @return
     */
    public String getAppName() {
        return appName;
    }

    /**
     * set 应用名称
     *
     * @param appName
     */
    public void setAppName(String appName) {
        this.appName = appName;
    }

    /**
     * get 应用状态: OPEN-启用, CLOSE-停用

     *
     * @return
     */
    public String getStatus() {
        return status;
    }

    /**
     * set 应用状态: OPEN-启用, CLOSE-停用

     *
     * @param status
     */
    public void setStatus(String status) {
        this.status = status;
    }

    /**
     * get 应用默认创建的房间类型 1-小房间;2-大房间
     *
     * @return
     */
    public Integer getRoomType() {
        return roomType;
    }

    /**
     * set 应用默认创建的房间类型 1-小房间;2-大房间
     *
     * @param roomType
     */
    public void setRoomType(Integer roomType) {
        this.roomType = roomType;
    }

    /**
     * get 计费类型: Duration-按时长

     *
     * @return
     */
    public String getBillType() {
        return billType;
    }

    /**
     * set 计费类型: Duration-按时长

     *
     * @param billType
     */
    public void setBillType(String billType) {
        this.billType = billType;
    }

    /**
     * get 创建时间(UTC)
     *
     * @return
     */
    public String getCreateTime() {
        return createTime;
    }

    /**
     * set 创建时间(UTC)
     *
     * @param createTime
     */
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }


    /**
     * set 应用ID
     *
     * @param appId
     */
    public AppInfoObject appId(String appId) {
        this.appId = appId;
        return this;
    }

    /**
     * set 应用名称
     *
     * @param appName
     */
    public AppInfoObject appName(String appName) {
        this.appName = appName;
        return this;
    }

    /**
     * set 应用状态: OPEN-启用, CLOSE-停用

     *
     * @param status
     */
    public AppInfoObject status(String status) {
        this.status = status;
        return this;
    }

    /**
     * set 应用默认创建的房间类型 1-小房间;2-大房间
     *
     * @param roomType
     */
    public AppInfoObject roomType(Integer roomType) {
        this.roomType = roomType;
        return this;
    }

    /**
     * set 计费类型: Duration-按时长

     *
     * @param billType
     */
    public AppInfoObject billType(String billType) {
        this.billType = billType;
        return this;
    }

    /**
     * set 创建时间(UTC)
     *
     * @param createTime
     */
    public AppInfoObject createTime(String createTime) {
        this.createTime = createTime;
        return this;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy