class Google::Apis::ConnectorsV1::ResultMetadata

Metadata of result field.

Attributes

data_type[RW]

The data type of the field. Corresponds to the JSON property ‘dataType` @return [String]

description[RW]

A brief description of the field. Corresponds to the JSON property ‘description` @return [String]

field[RW]

Name of the result field. Corresponds to the JSON property ‘field` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1696
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 1701
def update!(**args)
  @data_type = args[:data_type] if args.key?(:data_type)
  @description = args[:description] if args.key?(:description)
  @field = args[:field] if args.key?(:field)
end