Class: Google::Apis::ContentV2_1::GmbAccountsGmbAccount
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::GmbAccountsGmbAccount
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#email ⇒ String
The email which identifies the GMB account.
-
#listing_count ⇒ Fixnum
Number of listings under this account.
-
#name ⇒ String
The name of the GMB account.
-
#type ⇒ String
The type of the GMB account (User or Business).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GmbAccountsGmbAccount
constructor
A new instance of GmbAccountsGmbAccount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GmbAccountsGmbAccount
Returns a new instance of GmbAccountsGmbAccount.
3385 3386 3387 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3385 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The email which identifies the GMB account.
Corresponds to the JSON property email
3368 3369 3370 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3368 def email @email end |
#listing_count ⇒ Fixnum
Number of listings under this account.
Corresponds to the JSON property listingCount
3373 3374 3375 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3373 def listing_count @listing_count end |
#name ⇒ String
The name of the GMB account.
Corresponds to the JSON property name
3378 3379 3380 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3378 def name @name end |
#type ⇒ String
The type of the GMB account (User or Business).
Corresponds to the JSON property type
3383 3384 3385 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3383 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3390 3391 3392 3393 3394 3395 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3390 def update!(**args) @email = args[:email] if args.key?(:email) @listing_count = args[:listing_count] if args.key?(:listing_count) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |