Class: Quark::MdkTracing::Api::GetLogEventsRequest

Inherits:
Object
  • Object
show all
Extended by:
DatawireQuarkCore::Static
Defined in:
lib/mdk_tracing/api.rb

Constant Summary

Constants included from DatawireQuarkCore::Static

DatawireQuarkCore::Static::Unassigned

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DatawireQuarkCore::Static

_lazy_statics, static, unlazy_statics

Constructor Details

#initializeGetLogEventsRequest

Returns a new instance of GetLogEventsRequest.



60
61
62
63
64
65
# File 'lib/mdk_tracing/api.rb', line 60

def initialize()
    
    super()

    nil
end

Instance Attribute Details

#endTimeObject

Returns the value of attribute endTime.



53
54
55
# File 'lib/mdk_tracing/api.rb', line 53

def endTime
  @endTime
end

#startTimeObject

Returns the value of attribute startTime.



53
54
55
# File 'lib/mdk_tracing/api.rb', line 53

def startTime
  @startTime
end

Class Method Details

.decode(encoded) ⇒ Object



70
71
72
73
74
75
# File 'lib/mdk_tracing/api.rb', line 70

def self.decode(encoded)
    
    return ::DatawireQuarkCore.cast(::Quark.mdk_protocol.Serializable.decodeClassName("mdk_tracing.api.GetLogEventsRequest", encoded)) { ::Quark.mdk_tracing.api.GetLogEventsRequest }

    nil
end

Instance Method Details

#__init_fields__Object



109
110
111
112
113
114
115
116
# File 'lib/mdk_tracing/api.rb', line 109

def __init_fields__()
    
    super
    self.startTime = 0
    self.endTime = ::Quark.quark.now()

    nil
end

#_getClassObject



77
78
79
80
81
82
# File 'lib/mdk_tracing/api.rb', line 77

def _getClass()
    
    return "mdk_tracing.api.GetLogEventsRequest"

    nil
end

#_getField(name) ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/mdk_tracing/api.rb', line 84

def _getField(name)
    
    if ((name) == ("startTime"))
        return (self).startTime
    end
    if ((name) == ("endTime"))
        return (self).endTime
    end
    return nil

    nil
end

#_setField(name, value) ⇒ Object



97
98
99
100
101
102
103
104
105
106
107
# File 'lib/mdk_tracing/api.rb', line 97

def _setField(name, value)
    
    if ((name) == ("startTime"))
        (self).startTime = ::DatawireQuarkCore.cast(value) { ::Integer }
    end
    if ((name) == ("endTime"))
        (self).endTime = ::DatawireQuarkCore.cast(value) { ::Integer }
    end

    nil
end