Class: Google::Cloud::AdvisoryNotifications::V1::Csv

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/advisorynotifications/v1/service.rb

Overview

A representation of a CSV file attachment, as a list of column headers and a list of data rows.

Defined Under Namespace

Classes: CsvRow

Instance Attribute Summary collapse

Instance Attribute Details

#data_rows::Array<::Google::Cloud::AdvisoryNotifications::V1::Csv::CsvRow>

Returns The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.

Returns:



121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'proto_docs/google/cloud/advisorynotifications/v1/service.rb', line 121

class Csv
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A representation of a single data row in a CSV file.
  # @!attribute [rw] entries
  #   @return [::Array<::String>]
  #     The data entries in a CSV file row, as a string array rather than a
  #     single comma-separated string.
  class CsvRow
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#headers::Array<::String>

Returns The list of headers for data columns in a CSV file.

Returns:

  • (::Array<::String>)

    The list of headers for data columns in a CSV file.



121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'proto_docs/google/cloud/advisorynotifications/v1/service.rb', line 121

class Csv
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A representation of a single data row in a CSV file.
  # @!attribute [rw] entries
  #   @return [::Array<::String>]
  #     The data entries in a CSV file row, as a string array rather than a
  #     single comma-separated string.
  class CsvRow
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end