Class: Google::Apis::SheetsV4::ConditionValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb

Overview

The value of the condition.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ConditionValue

Returns a new instance of ConditionValue



3042
3043
3044
# File 'generated/google/apis/sheets_v4/classes.rb', line 3042

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

Instance Attribute Details

#relative_dateString

A relative date (based on the current date). Valid only if the type is DATE_BEFORE, DATE_AFTER, DATE_ON_OR_BEFORE or DATE_ON_OR_AFTER. Relative dates are not supported in data validation. They are supported only in conditional formatting and conditional filters. Corresponds to the JSON property relativeDate

Returns:

  • (String)


3033
3034
3035
# File 'generated/google/apis/sheets_v4/classes.rb', line 3033

def relative_date
  @relative_date
end

#user_entered_valueString

A value the condition is based on. The value will be parsed as if the user typed into a cell. Formulas are supported (and must begin with an = or a '+'). Corresponds to the JSON property userEnteredValue

Returns:

  • (String)


3040
3041
3042
# File 'generated/google/apis/sheets_v4/classes.rb', line 3040

def user_entered_value
  @user_entered_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3047
3048
3049
3050
# File 'generated/google/apis/sheets_v4/classes.rb', line 3047

def update!(**args)
  @relative_date = args[:relative_date] if args.key?(:relative_date)
  @user_entered_value = args[:user_entered_value] if args.key?(:user_entered_value)
end