Class: Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1Action

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Interactive objects inside a message. Documentation: - https://api.slack.com/ docs/message-buttons

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsDynamiteV1ApiCompatV1Action

Returns a new instance of AppsDynamiteV1ApiCompatV1Action.



4222
4223
4224
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4222

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#confirmGoogle::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1ActionConfirm

Confirmation dialog config. Corresponds to the JSON property confirm



4195
4196
4197
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4195

def confirm
  @confirm
end

#nameString

Unique identifier for this action. Corresponds to the JSON property name

Returns:

  • (String)


4200
4201
4202
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4200

def name
  @name
end

#styleString

Button style ("default", "primary", or "danger"). Corresponds to the JSON property style

Returns:

  • (String)


4205
4206
4207
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4205

def style
  @style
end

#textString

User-facing label for the action. Corresponds to the JSON property text

Returns:

  • (String)


4210
4211
4212
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4210

def text
  @text
end

#typeString

Action type - currently only "button". Corresponds to the JSON property type

Returns:

  • (String)


4215
4216
4217
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4215

def type
  @type
end

#valueString

Payload for this action. Will be sent to the action handler along with name. Corresponds to the JSON property value

Returns:

  • (String)


4220
4221
4222
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4220

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4227
4228
4229
4230
4231
4232
4233
4234
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4227

def update!(**args)
  @confirm = args[:confirm] if args.key?(:confirm)
  @name = args[:name] if args.key?(:name)
  @style = args[:style] if args.key?(:style)
  @text = args[:text] if args.key?(:text)
  @type = args[:type] if args.key?(:type)
  @value = args[:value] if args.key?(:value)
end