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

mdk_tracing.api.GetLogEventsRequest Maven / Gradle / Ivy

There is a newer version: 2.0.37
Show newest version
/* Quark 1.0.452 run at 2016-11-10 18:39:58.222591 */
package mdk_tracing.api;

public class GetLogEventsRequest extends mdk_protocol.Serializable implements io.datawire.quark.runtime.QObject {
    public static quark.reflect.Class mdk_tracing_api_GetLogEventsRequest_ref = datawire_mdk_md.Root.mdk_tracing_api_GetLogEventsRequest_md;
    /**
     * Filter out all log events from the response that
     * occurred before this time. Milliseconds since UNIX
     * epoch. If this key is not set OR the value is null
     * then all events since the beginning of time will be
     * returned.
     *
     */
    public Long startTime = 0L;
    /**
     * Filter out all log events from the response that
     * occurred after this time. Milliseconds since UNIX
     * epoch. If this key is not set OR the value is null
     * then all recorded events since the startTime will be
     * returned.
     *
     */
    public Long endTime = quark.Functions.now();
    public GetLogEventsRequest() {
        super();
    }
    public static GetLogEventsRequest decode(String encoded) {
        return (GetLogEventsRequest) (mdk_protocol.Serializable.decodeClassName("mdk_tracing.api.GetLogEventsRequest", encoded));
    }
    public String _getClass() {
        return "mdk_tracing.api.GetLogEventsRequest";
    }
    public Object _getField(String name) {
        if ((name)==("startTime") || ((Object)(name) != null && ((Object) (name)).equals("startTime"))) {
            return (this).startTime;
        }
        if ((name)==("endTime") || ((Object)(name) != null && ((Object) (name)).equals("endTime"))) {
            return (this).endTime;
        }
        return null;
    }
    public void _setField(String name, Object value) {
        if ((name)==("startTime") || ((Object)(name) != null && ((Object) (name)).equals("startTime"))) {
            (this).startTime = (Long) (value);
        }
        if ((name)==("endTime") || ((Object)(name) != null && ((Object) (name)).equals("endTime"))) {
            (this).endTime = (Long) (value);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy