Class: Spikard::ValidateRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeValidateRequest

Returns a new instance of ValidateRequest.

Parameters:

  • spec: (json_value)
  • channel: (String)
  • message: (String)
  • payload: (json_value)


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

def initialize: (spec: json_value, channel: String, message: String, payload: json_value) -> void

Instance Attribute Details

#channelString (readonly)

Returns the value of attribute channel.

Returns:

  • (String)


355
356
357
# File 'sig/types.rbs', line 355

def channel
  @channel
end

#messageString (readonly)

Returns the value of attribute message.

Returns:

  • (String)


356
357
358
# File 'sig/types.rbs', line 356

def message
  @message
end

#payloadjson_value (readonly)

Returns the value of attribute payload.

Returns:

  • (json_value)


357
358
359
# File 'sig/types.rbs', line 357

def payload
  @payload
end

#specjson_value (readonly)

Returns the value of attribute spec.

Returns:

  • (json_value)


354
355
356
# File 'sig/types.rbs', line 354

def spec
  @spec
end