Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult

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

The percentile result. Currently supported percentiles are 50th, 90th, and 99th.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult

Returns a new instance of GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult.



8123
8124
8125
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8123

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

Instance Attribute Details

#p50Float

The 50th percentile value. Corresponds to the JSON property p50

Returns:

  • (Float)


8111
8112
8113
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8111

def p50
  @p50
end

#p90Float

The 90th percentile value. Corresponds to the JSON property p90

Returns:

  • (Float)


8116
8117
8118
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8116

def p90
  @p90
end

#p99Float

The 99th percentile value. Corresponds to the JSON property p99

Returns:

  • (Float)


8121
8122
8123
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8121

def p99
  @p99
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8128
8129
8130
8131
8132
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 8128

def update!(**args)
  @p50 = args[:p50] if args.key?(:p50)
  @p90 = args[:p90] if args.key?(:p90)
  @p99 = args[:p99] if args.key?(:p99)
end