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

Constructor Details

#initialize(**args) ⇒ CsvRow

Returns a new instance of CsvRow.



610
611
612
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 610

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


608
609
610
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 608

def entries
  @entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



615
616
617
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 615

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