Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Column

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

Overview

The definition of a report column. Specifies the data properties in the corresponding position of the report rows.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1alpha1Column

Returns a new instance of GoogleCloudChannelV1alpha1Column.



3289
3290
3291
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3289

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

Instance Attribute Details

#column_idString

The unique name of the column (for example, customer_domain, channel_partner, customer_cost). You can use column IDs in RunReportJobRequest.filter. To see all reports and their columns, call CloudChannelReportsService.ListReports. Corresponds to the JSON property columnId

Returns:

  • (String)


3277
3278
3279
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3277

def column_id
  @column_id
end

#data_typeString

The type of the values for this column. Corresponds to the JSON property dataType

Returns:

  • (String)


3282
3283
3284
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3282

def data_type
  @data_type
end

#display_nameString

The column's display name. Corresponds to the JSON property displayName

Returns:

  • (String)


3287
3288
3289
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3287

def display_name
  @display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3294
3295
3296
3297
3298
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3294

def update!(**args)
  @column_id = args[:column_id] if args.key?(:column_id)
  @data_type = args[:data_type] if args.key?(:data_type)
  @display_name = args[:display_name] if args.key?(:display_name)
end