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

com.tencentcloudapi.ame.v20190916.models.PackageItem 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.ame.v20190916.models;

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

public class PackageItem extends AbstractModel{

    /**
    * 订单id
    */
    @SerializedName("OrderId")
    @Expose
    private String OrderId;

    /**
    * 歌曲名
    */
    @SerializedName("TrackName")
    @Expose
    private String TrackName;

    /**
    * 歌曲ID
    */
    @SerializedName("ItemID")
    @Expose
    private String ItemID;

    /**
    * 专辑图片
    */
    @SerializedName("Img")
    @Expose
    private String Img;

    /**
    * 歌手名
    */
    @SerializedName("ArtistName")
    @Expose
    private String ArtistName;

    /**
    * 歌曲时长
    */
    @SerializedName("Duration")
    @Expose
    private String Duration;

    /**
    * 授权区域,global: 全球 CN: 中国
    */
    @SerializedName("AuthorizedArea")
    @Expose
    private String AuthorizedArea;

    /**
     * Get 订单id 
     * @return OrderId 订单id
     */
    public String getOrderId() {
        return this.OrderId;
    }

    /**
     * Set 订单id
     * @param OrderId 订单id
     */
    public void setOrderId(String OrderId) {
        this.OrderId = OrderId;
    }

    /**
     * Get 歌曲名 
     * @return TrackName 歌曲名
     */
    public String getTrackName() {
        return this.TrackName;
    }

    /**
     * Set 歌曲名
     * @param TrackName 歌曲名
     */
    public void setTrackName(String TrackName) {
        this.TrackName = TrackName;
    }

    /**
     * Get 歌曲ID 
     * @return ItemID 歌曲ID
     */
    public String getItemID() {
        return this.ItemID;
    }

    /**
     * Set 歌曲ID
     * @param ItemID 歌曲ID
     */
    public void setItemID(String ItemID) {
        this.ItemID = ItemID;
    }

    /**
     * Get 专辑图片 
     * @return Img 专辑图片
     */
    public String getImg() {
        return this.Img;
    }

    /**
     * Set 专辑图片
     * @param Img 专辑图片
     */
    public void setImg(String Img) {
        this.Img = Img;
    }

    /**
     * Get 歌手名 
     * @return ArtistName 歌手名
     */
    public String getArtistName() {
        return this.ArtistName;
    }

    /**
     * Set 歌手名
     * @param ArtistName 歌手名
     */
    public void setArtistName(String ArtistName) {
        this.ArtistName = ArtistName;
    }

    /**
     * Get 歌曲时长 
     * @return Duration 歌曲时长
     */
    public String getDuration() {
        return this.Duration;
    }

    /**
     * Set 歌曲时长
     * @param Duration 歌曲时长
     */
    public void setDuration(String Duration) {
        this.Duration = Duration;
    }

    /**
     * Get 授权区域,global: 全球 CN: 中国 
     * @return AuthorizedArea 授权区域,global: 全球 CN: 中国
     */
    public String getAuthorizedArea() {
        return this.AuthorizedArea;
    }

    /**
     * Set 授权区域,global: 全球 CN: 中国
     * @param AuthorizedArea 授权区域,global: 全球 CN: 中国
     */
    public void setAuthorizedArea(String AuthorizedArea) {
        this.AuthorizedArea = AuthorizedArea;
    }

    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "OrderId", this.OrderId);
        this.setParamSimple(map, prefix + "TrackName", this.TrackName);
        this.setParamSimple(map, prefix + "ItemID", this.ItemID);
        this.setParamSimple(map, prefix + "Img", this.Img);
        this.setParamSimple(map, prefix + "ArtistName", this.ArtistName);
        this.setParamSimple(map, prefix + "Duration", this.Duration);
        this.setParamSimple(map, prefix + "AuthorizedArea", this.AuthorizedArea);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy