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

com.tencentcloudapi.ic.v20190307.models.AppInfo 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.ic.v20190307.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class AppInfo extends AbstractModel{

    /**
    * 应用ID
    */
    @SerializedName("Sdkappid")
    @Expose
    private String Sdkappid;

    /**
    * 应用key
    */
    @SerializedName("Appkey")
    @Expose
    private String Appkey;

    /**
    * 用户appid
    */
    @SerializedName("CloudAppid")
    @Expose
    private String CloudAppid;

    /**
    * 应用名称
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Name")
    @Expose
    private String Name;

    /**
    * 应用描述
    */
    @SerializedName("Description")
    @Expose
    private String Description;

    /**
    * 创建时间
    */
    @SerializedName("CreatedTime")
    @Expose
    private String CreatedTime;

    /**
    * 应用类型
    */
    @SerializedName("BizType")
    @Expose
    private Long BizType;

    /**
    * 用户Uin
    */
    @SerializedName("Uin")
    @Expose
    private String Uin;

    /**
     * Get 应用ID 
     * @return Sdkappid 应用ID
     */
    public String getSdkappid() {
        return this.Sdkappid;
    }

    /**
     * Set 应用ID
     * @param Sdkappid 应用ID
     */
    public void setSdkappid(String Sdkappid) {
        this.Sdkappid = Sdkappid;
    }

    /**
     * Get 应用key 
     * @return Appkey 应用key
     */
    public String getAppkey() {
        return this.Appkey;
    }

    /**
     * Set 应用key
     * @param Appkey 应用key
     */
    public void setAppkey(String Appkey) {
        this.Appkey = Appkey;
    }

    /**
     * Get 用户appid 
     * @return CloudAppid 用户appid
     */
    public String getCloudAppid() {
        return this.CloudAppid;
    }

    /**
     * Set 用户appid
     * @param CloudAppid 用户appid
     */
    public void setCloudAppid(String CloudAppid) {
        this.CloudAppid = CloudAppid;
    }

    /**
     * Get 应用名称
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Name 应用名称
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getName() {
        return this.Name;
    }

    /**
     * Set 应用名称
注意:此字段可能返回 null,表示取不到有效值。
     * @param Name 应用名称
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setName(String Name) {
        this.Name = Name;
    }

    /**
     * Get 应用描述 
     * @return Description 应用描述
     */
    public String getDescription() {
        return this.Description;
    }

    /**
     * Set 应用描述
     * @param Description 应用描述
     */
    public void setDescription(String Description) {
        this.Description = Description;
    }

    /**
     * Get 创建时间 
     * @return CreatedTime 创建时间
     */
    public String getCreatedTime() {
        return this.CreatedTime;
    }

    /**
     * Set 创建时间
     * @param CreatedTime 创建时间
     */
    public void setCreatedTime(String CreatedTime) {
        this.CreatedTime = CreatedTime;
    }

    /**
     * Get 应用类型 
     * @return BizType 应用类型
     */
    public Long getBizType() {
        return this.BizType;
    }

    /**
     * Set 应用类型
     * @param BizType 应用类型
     */
    public void setBizType(Long BizType) {
        this.BizType = BizType;
    }

    /**
     * Get 用户Uin 
     * @return Uin 用户Uin
     */
    public String getUin() {
        return this.Uin;
    }

    /**
     * Set 用户Uin
     * @param Uin 用户Uin
     */
    public void setUin(String Uin) {
        this.Uin = Uin;
    }

    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "Sdkappid", this.Sdkappid);
        this.setParamSimple(map, prefix + "Appkey", this.Appkey);
        this.setParamSimple(map, prefix + "CloudAppid", this.CloudAppid);
        this.setParamSimple(map, prefix + "Name", this.Name);
        this.setParamSimple(map, prefix + "Description", this.Description);
        this.setParamSimple(map, prefix + "CreatedTime", this.CreatedTime);
        this.setParamSimple(map, prefix + "BizType", this.BizType);
        this.setParamSimple(map, prefix + "Uin", this.Uin);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy