Class: Google::Apis::ContentV2::DatafeedFormat

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatafeedFormat

Returns a new instance of DatafeedFormat.



1959
1960
1961
# File 'generated/google/apis/content_v2/classes.rb', line 1959

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#column_delimiterString

Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds. Acceptable values are: - "pipe" - "tab" - "tilde" Corresponds to the JSON property columnDelimiter

Returns:

  • (String)


1943
1944
1945
# File 'generated/google/apis/content_v2/classes.rb', line 1943

def column_delimiter
  @column_delimiter
end

#file_encodingString

Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected. Acceptable values are: - "latin-1" - "utf-16be" - " utf-16le" - "utf-8" - "windows-1252" Corresponds to the JSON property fileEncoding

Returns:

  • (String)


1950
1951
1952
# File 'generated/google/apis/content_v2/classes.rb', line 1950

def file_encoding
  @file_encoding
end

#quoting_modeString

Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds. Acceptable values are: - " normal character" - "value quoting" Corresponds to the JSON property quotingMode

Returns:

  • (String)


1957
1958
1959
# File 'generated/google/apis/content_v2/classes.rb', line 1957

def quoting_mode
  @quoting_mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1964
1965
1966
1967
1968
# File 'generated/google/apis/content_v2/classes.rb', line 1964

def update!(**args)
  @column_delimiter = args[:column_delimiter] if args.key?(:column_delimiter)
  @file_encoding = args[:file_encoding] if args.key?(:file_encoding)
  @quoting_mode = args[:quoting_mode] if args.key?(:quoting_mode)
end