Class: Google::Apis::JobsV2::StringValues

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ StringValues

Returns a new instance of StringValues.



3426
3427
3428
# File 'generated/google/apis/jobs_v2/classes.rb', line 3426

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#valuesArray<String>

Required. String values. Corresponds to the JSON property values

Returns:

  • (Array<String>)


3424
3425
3426
# File 'generated/google/apis/jobs_v2/classes.rb', line 3424

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3431
3432
3433
# File 'generated/google/apis/jobs_v2/classes.rb', line 3431

def update!(**args)
  @values = args[:values] if args.key?(:values)
end