Class: Google::Apis::SheetsV4::ChartCustomNumberFormatOptions

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

Custom number formatting options for chart attributes.

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) ⇒ ChartCustomNumberFormatOptions

Returns a new instance of ChartCustomNumberFormatOptions.



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

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

Instance Attribute Details

#prefixString

Custom prefix to be prepended to the chart attribute. This field is optional. Corresponds to the JSON property prefix

Returns:

  • (String)


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

def prefix
  @prefix
end

#suffixString

Custom suffix to be appended to the chart attribute. This field is optional. Corresponds to the JSON property suffix

Returns:

  • (String)


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

def suffix
  @suffix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3117
3118
3119
3120
# File 'generated/google/apis/sheets_v4/classes.rb', line 3117

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