Class: Google::Apis::WalletobjectsV1::LabelValue

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

Overview

A pair of text strings to be displayed in the details view. Note we no longer display LabelValue/LabelValueRow as a table, instead a list of items.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LabelValue

Returns a new instance of LabelValue.



4442
4443
4444
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4442

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

Instance Attribute Details

#labelString

The label for a specific row and column. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout. Corresponds to the JSON property label

Returns:

  • (String)


4422
4423
4424
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4422

def label
  @label
end

#localized_labelGoogle::Apis::WalletobjectsV1::LocalizedString

Translated strings for the label. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout. Corresponds to the JSON property localizedLabel



4428
4429
4430
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4428

def localized_label
  @localized_label
end

#localized_valueGoogle::Apis::WalletobjectsV1::LocalizedString

Translated strings for the value. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout. Corresponds to the JSON property localizedValue



4434
4435
4436
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4434

def localized_value
  @localized_value
end

#valueString

The value for a specific row and column. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout. Corresponds to the JSON property value

Returns:

  • (String)


4440
4441
4442
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4440

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4447
4448
4449
4450
4451
4452
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4447

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