Class: Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1ActionConfirm
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1ActionConfirm
- 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
Confirmation dialog config.
Instance Attribute Summary collapse
-
#dismiss_text ⇒ String
"Cancel" button label.
-
#ok_text ⇒ String
"OK" button label.
-
#text ⇒ String
Confirmation dialog body text.
-
#title ⇒ String
Confirmation dialog title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteV1ApiCompatV1ActionConfirm
constructor
A new instance of AppsDynamiteV1ApiCompatV1ActionConfirm.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteV1ApiCompatV1ActionConfirm
Returns a new instance of AppsDynamiteV1ApiCompatV1ActionConfirm.
3876 3877 3878 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3876 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dismiss_text ⇒ String
"Cancel" button label.
Corresponds to the JSON property dismiss_text
3859 3860 3861 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3859 def dismiss_text @dismiss_text end |
#ok_text ⇒ String
"OK" button label.
Corresponds to the JSON property ok_text
3864 3865 3866 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3864 def ok_text @ok_text end |
#text ⇒ String
Confirmation dialog body text.
Corresponds to the JSON property text
3869 3870 3871 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3869 def text @text end |
#title ⇒ String
Confirmation dialog title.
Corresponds to the JSON property title
3874 3875 3876 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3874 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3881 3882 3883 3884 3885 3886 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3881 def update!(**args) @dismiss_text = args[:dismiss_text] if args.key?(:dismiss_text) @ok_text = args[:ok_text] if args.key?(:ok_text) @text = args[:text] if args.key?(:text) @title = args[:title] if args.key?(:title) end |