Class: Google::Apis::CloudsearchV1::AppsDynamiteSharedAppProfile
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteSharedAppProfile
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Optional field for apps overriding display info
Instance Attribute Summary collapse
-
#avatar_emoji ⇒ String
Displayed user avatar emoji.
-
#avatar_url ⇒ String
Displayed user avatar url.
-
#name ⇒ String
Displayed user name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteSharedAppProfile
constructor
A new instance of AppsDynamiteSharedAppProfile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteSharedAppProfile
Returns a new instance of AppsDynamiteSharedAppProfile.
643 644 645 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 643 def initialize(**args) update!(**args) end |
Instance Attribute Details
#avatar_emoji ⇒ String
Displayed user avatar emoji.
Corresponds to the JSON property avatarEmoji
631 632 633 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 631 def avatar_emoji @avatar_emoji end |
#avatar_url ⇒ String
Displayed user avatar url.
Corresponds to the JSON property avatarUrl
636 637 638 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 636 def avatar_url @avatar_url end |
#name ⇒ String
Displayed user name.
Corresponds to the JSON property name
641 642 643 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 641 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
648 649 650 651 652 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 648 def update!(**args) @avatar_emoji = args[:avatar_emoji] if args.key?(:avatar_emoji) @avatar_url = args[:avatar_url] if args.key?(:avatar_url) @name = args[:name] if args.key?(:name) end |