public sealed class Csv : IMessage<Csv>, IEquatable<Csv>, IDeepCloneable<Csv>, IBufferMessage, IMessage
Reference documentation and code samples for the Advisory Notifications v1 API class Csv.
A representation of a CSV file attachment, as a list of column headers and a list of data rows.
Namespace
Google.Cloud.AdvisoryNotifications.V1Assembly
Google.Cloud.AdvisoryNotifications.V1.dll
Constructors
Csv()
public Csv()
Csv(Csv)
public Csv(Csv other)
Parameter | |
---|---|
Name | Description |
other | Csv |
Properties
DataRows
public RepeatedField<Csv.Types.CsvRow> DataRows { get; }
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
Property Value | |
---|---|
Type | Description |
RepeatedFieldCsvTypesCsvRow |
Headers
public RepeatedField<string> Headers { get; }
The list of headers for data columns in a CSV file.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |