Class: Sentdm::Models::MessageRetrieveStatusResponse::Data::MessageBody::Button
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(postback_data: nil, text: nil, type: nil, value: nil) ⇒ Object
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
# File 'lib/sentdm/models/message_retrieve_status_response.rb', line 232
class Button < Sentdm::Internal::Type::BaseModel
optional :postback_data, String, api_name: :postbackData, nil?: true
optional :text, String, nil?: true
optional :type, String
optional :value, String
end
|
Instance Attribute Details
#postback_data ⇒ String?
236
|
# File 'lib/sentdm/models/message_retrieve_status_response.rb', line 236
optional :postback_data, String, api_name: :postbackData, nil?: true
|
#text ⇒ String?
241
|
# File 'lib/sentdm/models/message_retrieve_status_response.rb', line 241
optional :text, String, nil?: true
|
#type ⇒ String?
246
|
# File 'lib/sentdm/models/message_retrieve_status_response.rb', line 246
optional :type, String
|
#value ⇒ String?
251
|
# File 'lib/sentdm/models/message_retrieve_status_response.rb', line 251
optional :value, String
|