Class: Spikard::ParsedOperation

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeParsedOperation

Returns a new instance of ParsedOperation.

Parameters:

  • name: (String)
  • action: (String)
  • channel: (String)


339
# File 'sig/types.rbs', line 339

def initialize: (name: String, action: String, channel: String) -> void

Instance Attribute Details

#actionString (readonly)

Returns the value of attribute action.

Returns:

  • (String)


336
337
338
# File 'sig/types.rbs', line 336

def action
  @action
end

#channelString (readonly)

Returns the value of attribute channel.

Returns:

  • (String)


337
338
339
# File 'sig/types.rbs', line 337

def channel
  @channel
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


335
336
337
# File 'sig/types.rbs', line 335

def name
  @name
end