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

com.envisioniot.enos.enosapi.common.response.dataservice.AssetsRawDataResponse Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.envisioniot.enos.enosapi.common.response.dataservice;

import com.envisioniot.enos.enosapi.common.response.EnOSResponse;
import com.google.gson.annotations.SerializedName;

import java.util.List;
import java.util.Map;

/**
 * Created by jingqi.shi on 2018/11/21
 */
public class AssetsRawDataResponse extends EnOSResponse {

    private static final long serialVersionUID = -2817157091083930585L;

    @SerializedName("nextPageToken")
    private String nextPageToken;

    @SerializedName("data")
    private List> result;

    public String getNextPageToken() {
        return nextPageToken;
    }

    public void setNextPageToken(String nextPageToken) {
        this.nextPageToken = nextPageToken;
    }

    public List> getResult() {
        return result;
    }

    public void setResult(List> result) {
        this.result = result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy