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.



3105
3106
3107
# File 'generated/google/apis/sheets_v4/classes.rb', line 3105

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)


3096
3097
3098
# File 'generated/google/apis/sheets_v4/classes.rb', line 3096

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 =). Corresponds to the JSON property userEnteredValue

Returns:

  • (String)


3103
3104
3105
# File 'generated/google/apis/sheets_v4/classes.rb', line 3103

def user_entered_value
  @user_entered_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3110
3111
3112
3113
# File 'generated/google/apis/sheets_v4/classes.rb', line 3110

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