Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Dashboard

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

Overview

Configurable dashboard

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Dashboard

Returns a new instance of GoogleCloudContactcenterinsightsV1Dashboard.



3515
3516
3517
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3515

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

Instance Attribute Details

#create_timeString

Output only. Dashboard creation time. Corresponds to the JSON property createTime

Returns:

  • (String)


3470
3471
3472
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3470

def create_time
  @create_time
end

#date_range_configGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DateRangeConfig

Date range configuration for dashboard charts. Corresponds to the JSON property dateRangeConfig



3475
3476
3477
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3475

def date_range_config
  @date_range_config
end

#descriptionString

Dashboard description Corresponds to the JSON property description

Returns:

  • (String)


3480
3481
3482
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3480

def description
  @description
end

#display_nameString

User provided display name of the dashboard. Corresponds to the JSON property displayName

Returns:

  • (String)


3485
3486
3487
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3485

def display_name
  @display_name
end

#filterString

Filter applied to all charts in the dashboard. Should support scope later. Corresponds to the JSON property filter

Returns:

  • (String)


3490
3491
3492
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3490

def filter
  @filter
end

#nameString

Identifier. Dashboard resource name. Format: projects/project/locations/ location/dashboards/dashboard Corresponds to the JSON property name

Returns:

  • (String)


3496
3497
3498
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3496

def name
  @name
end

#read_onlyBoolean Also known as: read_only?

Output only. Whether the dashboard is read-only. All predefined dashboards are read-only and cannot be modified by the user. Corresponds to the JSON property readOnly

Returns:

  • (Boolean)


3502
3503
3504
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3502

def read_only
  @read_only
end

#root_containerGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Container

Configurable dashboard's container. Container can contain multiple widgets. Corresponds to the JSON property rootContainer



3508
3509
3510
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3508

def root_container
  @root_container
end

#update_timeString

Output only. Dashboard last update time. Corresponds to the JSON property updateTime

Returns:

  • (String)


3513
3514
3515
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3513

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3520

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @date_range_config = args[:date_range_config] if args.key?(:date_range_config)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @filter = args[:filter] if args.key?(:filter)
  @name = args[:name] if args.key?(:name)
  @read_only = args[:read_only] if args.key?(:read_only)
  @root_container = args[:root_container] if args.key?(:root_container)
  @update_time = args[:update_time] if args.key?(:update_time)
end