PlayUrl1.java 1.13 KB
package com.cnlive.goldenline.model;

import android.support.annotation.NonNull;

import java.io.Serializable;
import java.util.List;

/**
 * @创建者 xk
 * @创建时间 2016/8/1717:35
 * @描述 ${TODO}
 */
public class PlayUrl1 implements Serializable {


    private List<PlayUrlTypeItem> playUrl;
    private String errorCode;
    private String errorMessage;


    public List<PlayUrlTypeItem> getPlayUrl() {
        return playUrl;
    }

    private void setPlayUrl(List<PlayUrlTypeItem> playUrl) {
        this.playUrl = playUrl;
    }

    public String getErrorMessage() {
        return errorMessage;
    }

    public void setErrorMessage(String errorMessage) {
        this.errorMessage = errorMessage;
    }

    public String getErrorCode() {
        return errorCode;
    }

    public void setErrorCode(String errorCode) {
        this.errorCode = errorCode;
    }

    @NonNull
    @Override
    public String toString() {
        return "PlayUrl1{" +
                "errorCode='" + errorCode + '\'' +
                ", playUrl=" + playUrl +
                ", errorMessage='" + errorMessage + '\'' +
                '}';
    }
}