Show / Hide Table of Contents

Class CsvExportOptions

Options for exporting data in CSV format.

Inheritance
object
CsvExportOptions
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudAlloyDBAdmin.v1beta.Data
Assembly: Google.Apis.CloudAlloyDBAdmin.v1beta.dll
Syntax
public class CsvExportOptions : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

EscapeCharacter

Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is the same as quote character. The value of this argument has to be a character in Hex ASCII Code.

Declaration
[JsonProperty("escapeCharacter")]
public virtual string EscapeCharacter { get; set; }
Property Value
Type Description
string

FieldDelimiter

Optional. Specifies the character that separates columns within each row (line) of the file. The default is comma. The value of this argument has to be a character in Hex ASCII Code.

Declaration
[JsonProperty("fieldDelimiter")]
public virtual string FieldDelimiter { get; set; }
Property Value
Type Description
string

QuoteCharacter

Optional. Specifies the quoting character to be used when a data value is quoted. The default is double-quote. The value of this argument has to be a character in Hex ASCII Code.

Declaration
[JsonProperty("quoteCharacter")]
public virtual string QuoteCharacter { get; set; }
Property Value
Type Description
string

SelectQuery

Required. The SELECT query used to extract the data.

Declaration
[JsonProperty("selectQuery")]
public virtual string SelectQuery { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX