Class: Google::Apis::MybusinessplaceactionsV1::PlaceActionTypeMetadata
- Inherits:
-
Object
- Object
- Google::Apis::MybusinessplaceactionsV1::PlaceActionTypeMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/mybusinessplaceactions_v1/classes.rb,
lib/google/apis/mybusinessplaceactions_v1/representations.rb,
lib/google/apis/mybusinessplaceactions_v1/representations.rb more...
Overview
Metadata for supported place action types.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The localized display name for the attribute, if available; otherwise, the English display name.
-
#place_action_type ⇒ String
The place action type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PlaceActionTypeMetadata
constructor
A new instance of PlaceActionTypeMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PlaceActionTypeMetadata
Returns a new instance of PlaceActionTypeMetadata.
185 186 187 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The localized display name for the attribute, if available; otherwise, the
English display name.
Corresponds to the JSON property displayName
178 179 180 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 178 def display_name @display_name end |
#place_action_type ⇒ String
The place action type.
Corresponds to the JSON property placeActionType
183 184 185 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 183 def place_action_type @place_action_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
190 191 192 193 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 190 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @place_action_type = args[:place_action_type] if args.key?(:place_action_type) end |