Class: Google::Apis::AlertcenterV1beta1::CsvRow

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb

Overview

A representation of a single data row in a CSV file.

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) ⇒ CsvRow

Returns a new instance of CsvRow.



629
630
631
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 629

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

Instance Attribute Details

#entriesArray<String>

The data entries in a CSV file row, as a string array rather than a single comma-separated string. Corresponds to the JSON property entries

Returns:

  • (Array<String>)


627
628
629
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 627

def entries
  @entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



634
635
636
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 634

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