Class: EverSdk::Debot::ResultOfAppDebotBrowser
- Inherits:
-
Object
- Object
- EverSdk::Debot::ResultOfAppDebotBrowser
- Defined in:
- lib/ever_sdk_client/debot.rb
Instance Attribute Summary collapse
-
#is_approved ⇒ Object
readonly
Returns the value of attribute is_approved.
-
#signing_box ⇒ Object
readonly
Returns the value of attribute signing_box.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .new_with_type_approve(a) ⇒ Object
- .new_with_type_get_signing_box(a) ⇒ Object
- .new_with_type_input(a) ⇒ Object
- .new_with_type_invoke_debot ⇒ Object
Instance Attribute Details
#is_approved ⇒ Object (readonly)
Returns the value of attribute is_approved.
226 227 228 |
# File 'lib/ever_sdk_client/debot.rb', line 226 def is_approved @is_approved end |
#signing_box ⇒ Object (readonly)
Returns the value of attribute signing_box.
226 227 228 |
# File 'lib/ever_sdk_client/debot.rb', line 226 def signing_box @signing_box end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
226 227 228 |
# File 'lib/ever_sdk_client/debot.rb', line 226 def type @type end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
226 227 228 |
# File 'lib/ever_sdk_client/debot.rb', line 226 def value @value end |
Class Method Details
.new_with_type_approve(a) ⇒ Object
242 243 244 245 |
# File 'lib/ever_sdk_client/debot.rb', line 242 def self.new_with_type_approve(a) @type = :approve @is_approved = a end |
.new_with_type_get_signing_box(a) ⇒ Object
233 234 235 236 |
# File 'lib/ever_sdk_client/debot.rb', line 233 def self.new_with_type_get_signing_box(a) @type = :get_signing_box @signing_box = signing_box end |
.new_with_type_input(a) ⇒ Object
228 229 230 231 |
# File 'lib/ever_sdk_client/debot.rb', line 228 def self.new_with_type_input(a) @type = :input @value = a end |
.new_with_type_invoke_debot ⇒ Object
238 239 240 |
# File 'lib/ever_sdk_client/debot.rb', line 238 def self.new_with_type_invoke_debot @type = :invoke_debot end |