Class: Aws::Connect::Types::DecimalCondition

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

A decimal search condition for Search APIs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#comparison_typeString

The type of comparison to be made when evaluating the decimal condition.

Returns:

  • (String)


8412
8413
8414
8415
8416
8417
8418
8419
# File 'lib/aws-sdk-connect/types.rb', line 8412

class DecimalCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#field_nameString

A name of the decimal property to be searched.

Returns:

  • (String)


8412
8413
8414
8415
8416
8417
8418
8419
# File 'lib/aws-sdk-connect/types.rb', line 8412

class DecimalCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#max_valueFloat

A maximum value of the decimal property.

Returns:

  • (Float)


8412
8413
8414
8415
8416
8417
8418
8419
# File 'lib/aws-sdk-connect/types.rb', line 8412

class DecimalCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#min_valueFloat

A minimum value of the decimal property.

Returns:

  • (Float)


8412
8413
8414
8415
8416
8417
8418
8419
# File 'lib/aws-sdk-connect/types.rb', line 8412

class DecimalCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end