Class: Google::Apis::SqladminV1beta4::Value

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

Overview

The cell value of the table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Value

Returns a new instance of Value.



6744
6745
6746
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6744

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

Instance Attribute Details

#null_valueBoolean Also known as: null_value?

If cell value is null, then this flag will be set to true. Corresponds to the JSON property nullValue

Returns:

  • (Boolean)


6736
6737
6738
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6736

def null_value
  @null_value
end

#valueString

The cell value represented in string format. Corresponds to the JSON property value

Returns:

  • (String)


6742
6743
6744
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6742

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6749
6750
6751
6752
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6749

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