Class Csv
A representation of a CSV file attachment, as a list of column headers and a list of data rows.
Inheritance
System.Object
Csv
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AlertCenter.v1beta1.Data
Assembly: Google.Apis.AlertCenter.v1beta1.dll
Syntax
public class Csv : IDirectResponseSchema
Properties
DataRows
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
Declaration
[JsonProperty("dataRows")]
public virtual IList<CsvRow> DataRows { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<CsvRow> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Headers
The list of headers for data columns in a CSV file.
Declaration
[JsonProperty("headers")]
public virtual IList<string> Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<System.String> |