Show / Hide Table of Contents

Class DelimitedFileTypeMetadata

Metadata of delimited files.

Inheritance
object
TextFileTypeMetadata
DelimitedFileTypeMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingService.Models
Assembly: OCI.DotNetSDK.Datalabelingservice.dll
Syntax
public class DelimitedFileTypeMetadata : TextFileTypeMetadata

Properties

ColumnDelimiter

Declaration
[JsonProperty(PropertyName = "columnDelimiter")]
public string ColumnDelimiter { get; set; }
Property Value
Type Description
string

A column delimiter

ColumnIndex

Declaration
[Required(ErrorMessage = "ColumnIndex is required.")]
[JsonProperty(PropertyName = "columnIndex")]
public int? ColumnIndex { get; set; }
Property Value
Type Description
int?

The index of a selected column. This is a zero-based index.

Remarks

Required

ColumnName

Declaration
[JsonProperty(PropertyName = "columnName")]
public string ColumnName { get; set; }
Property Value
Type Description
string

The name of a selected column.

EscapeCharacter

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

An escape character.

LineDelimiter

Declaration
[JsonProperty(PropertyName = "lineDelimiter")]
public string LineDelimiter { get; set; }
Property Value
Type Description
string

A line delimiter.

In this article
Back to top