Class: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaFieldSelectionOptionsChoiceProperties

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

Overview

Basic properties of the choice.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsDriveLabelsV2betaFieldSelectionOptionsChoiceProperties

Returns a new instance of GoogleAppsDriveLabelsV2betaFieldSelectionOptionsChoiceProperties.



2023
2024
2025
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2023

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

Instance Attribute Details

#badge_configGoogle::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaBadgeConfig

Badge status of the label. Corresponds to the JSON property badgeConfig



2005
2006
2007
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2005

def badge_config
  @badge_config
end

#descriptionString

The description of this label. Corresponds to the JSON property description

Returns:

  • (String)


2010
2011
2012
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2010

def description
  @description
end

#display_nameString

Required. The display text to show in the UI identifying this field. Corresponds to the JSON property displayName

Returns:

  • (String)


2015
2016
2017
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2015

def display_name
  @display_name
end

#insert_before_choiceString

Input only. Insert or move this choice before the indicated choice. If empty, the choice is placed at the end of the list. Corresponds to the JSON property insertBeforeChoice

Returns:

  • (String)


2021
2022
2023
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2021

def insert_before_choice
  @insert_before_choice
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2028
2029
2030
2031
2032
2033
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2028

def update!(**args)
  @badge_config = args[:badge_config] if args.key?(:badge_config)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @insert_before_choice = args[:insert_before_choice] if args.key?(:insert_before_choice)
end