Example usage for org.json JSONSerializable interface-usage

List of usage examples for org.json JSONSerializable interface-usage

Introduction

In this page you can find the example usage for org.json JSONSerializable interface-usage.

Usage

From source file com.connectsdk.core.AppInfo.java

/**
 * Normalized reference object for information about a DeviceService's app. This
 * object will, in most cases, be used to launch apps.
 * 
 * In some cases, all that is needed to launch an app is the app id.
 */

From source file com.connectsdk.core.ExternalInputInfo.java

/**
 * Normalized reference object for information about a DeviceService's external inputs. This object is required to set a DeviceService's external input.
 */
public class ExternalInputInfo implements JSONSerializable {
    String id;
    String name;

From source file com.connectsdk.core.ChannelInfo.java

/**
 * Normalized reference object for information about a TVs channels. This object is required to set the channel on a TV.
 */
public class ChannelInfo implements JSONSerializable {
    // @cond INTERNAL
    String channelName;

From source file com.connectsdk.core.ProgramList.java

public class ProgramList implements JSONSerializable {
    ChannelInfo channel;
    JSONArray programList;

    public ProgramList(ChannelInfo channel, JSONArray programList) {
        this.channel = channel;