Class: Google::Apis::ScriptV1::Value
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::Value
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/script_v1/classes.rb,
lib/google/apis/script_v1/representations.rb,
lib/google/apis/script_v1/representations.rb
Overview
Value
represents a dynamically typed value which is the outcome of an
executed script.
Instance Attribute Summary collapse
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Represents a boolean value.
-
#bytes_value ⇒ String
Represents raw byte values.
-
#date_value ⇒ Fixnum
Represents a date in ms since the epoch.
-
#list_value ⇒ Google::Apis::ScriptV1::ListValue
ListValue
is a wrapper around a repeated field of values. -
#null_value ⇒ String
Represents a null value.
-
#number_value ⇒ Float
Represents a double value.
-
#proto_value ⇒ Hash<String,Object>
Represents a structured proto value.
-
#string_value ⇒ String
Represents a string value.
-
#struct_value ⇒ Google::Apis::ScriptV1::Struct
Struct
represents a structured data value, consisting of fields which map to dynamically typed values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Value
constructor
A new instance of Value.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Value
Returns a new instance of Value.
1155 1156 1157 |
# File 'lib/google/apis/script_v1/classes.rb', line 1155 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_value ⇒ Boolean Also known as: bool_value?
Represents a boolean value.
Corresponds to the JSON property boolValue
1110 1111 1112 |
# File 'lib/google/apis/script_v1/classes.rb', line 1110 def bool_value @bool_value end |
#bytes_value ⇒ String
Represents raw byte values.
Corresponds to the JSON property bytesValue
NOTE: Values are automatically base64 encoded/decoded in the client library.
1117 1118 1119 |
# File 'lib/google/apis/script_v1/classes.rb', line 1117 def bytes_value @bytes_value end |
#date_value ⇒ Fixnum
Represents a date in ms since the epoch.
Corresponds to the JSON property dateValue
1122 1123 1124 |
# File 'lib/google/apis/script_v1/classes.rb', line 1122 def date_value @date_value end |
#list_value ⇒ Google::Apis::ScriptV1::ListValue
ListValue
is a wrapper around a repeated field of values.
Corresponds to the JSON property listValue
1127 1128 1129 |
# File 'lib/google/apis/script_v1/classes.rb', line 1127 def list_value @list_value end |
#null_value ⇒ String
Represents a null value.
Corresponds to the JSON property nullValue
1132 1133 1134 |
# File 'lib/google/apis/script_v1/classes.rb', line 1132 def null_value @null_value end |
#number_value ⇒ Float
Represents a double value.
Corresponds to the JSON property numberValue
1137 1138 1139 |
# File 'lib/google/apis/script_v1/classes.rb', line 1137 def number_value @number_value end |
#proto_value ⇒ Hash<String,Object>
Represents a structured proto value.
Corresponds to the JSON property protoValue
1142 1143 1144 |
# File 'lib/google/apis/script_v1/classes.rb', line 1142 def proto_value @proto_value end |
#string_value ⇒ String
Represents a string value.
Corresponds to the JSON property stringValue
1147 1148 1149 |
# File 'lib/google/apis/script_v1/classes.rb', line 1147 def string_value @string_value end |
#struct_value ⇒ Google::Apis::ScriptV1::Struct
Struct
represents a structured data value, consisting of fields which map to
dynamically typed values.
Corresponds to the JSON property structValue
1153 1154 1155 |
# File 'lib/google/apis/script_v1/classes.rb', line 1153 def struct_value @struct_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 |
# File 'lib/google/apis/script_v1/classes.rb', line 1160 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @bytes_value = args[:bytes_value] if args.key?(:bytes_value) @date_value = args[:date_value] if args.key?(:date_value) @list_value = args[:list_value] if args.key?(:list_value) @null_value = args[:null_value] if args.key?(:null_value) @number_value = args[:number_value] if args.key?(:number_value) @proto_value = args[:proto_value] if args.key?(:proto_value) @string_value = args[:string_value] if args.key?(:string_value) @struct_value = args[:struct_value] if args.key?(:struct_value) end |