Class: Quark::MdkTracing::Api::GetLogEventsRequest
- Inherits:
-
Object
- Object
- Quark::MdkTracing::Api::GetLogEventsRequest
- 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
-
#endTime ⇒ Object
Returns the value of attribute endTime.
-
#startTime ⇒ Object
Returns the value of attribute startTime.
Class Method Summary collapse
Instance Method Summary collapse
- #__init_fields__ ⇒ Object
- #_getClass ⇒ Object
- #_getField(name) ⇒ Object
- #_setField(name, value) ⇒ Object
-
#initialize ⇒ GetLogEventsRequest
constructor
A new instance of GetLogEventsRequest.
Methods included from DatawireQuarkCore::Static
_lazy_statics, static, unlazy_statics
Constructor Details
#initialize ⇒ GetLogEventsRequest
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
#endTime ⇒ Object
Returns the value of attribute endTime.
53 54 55 |
# File 'lib/mdk_tracing/api.rb', line 53 def endTime @endTime end |
#startTime ⇒ Object
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 |
#_getClass ⇒ Object
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 |