Class: Google::Apis::JobsV2::StringValues
- Inherits:
-
Object
- Object
- Google::Apis::JobsV2::StringValues
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/jobs_v2/classes.rb,
generated/google/apis/jobs_v2/representations.rb,
generated/google/apis/jobs_v2/representations.rb
Overview
Represents array of string values.
Instance Attribute Summary collapse
-
#values ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StringValues
constructor
A new instance of StringValues.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StringValues
Returns a new instance of StringValues
3353 3354 3355 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 3353 def initialize(**args) update!(**args) end |
Instance Attribute Details
#values ⇒ Array<String>
Required.
String values.
Corresponds to the JSON property values
3351 3352 3353 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 3351 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3358 3359 3360 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 3358 def update!(**args) @values = args[:values] if args.key?(:values) end |