Class: Google::Apis::ContentV2::GmbAccountsGmbAccount

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GmbAccountsGmbAccount

Returns a new instance of GmbAccountsGmbAccount



2225
2226
2227
# File 'generated/google/apis/content_v2/classes.rb', line 2225

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

Instance Attribute Details

#emailString

The email which identifies the GMB account. Corresponds to the JSON property email

Returns:

  • (String)


2208
2209
2210
# File 'generated/google/apis/content_v2/classes.rb', line 2208

def email
  @email
end

#listing_countFixnum

Number of listings under this account. Corresponds to the JSON property listingCount

Returns:

  • (Fixnum)


2213
2214
2215
# File 'generated/google/apis/content_v2/classes.rb', line 2213

def listing_count
  @listing_count
end

#nameString

The name of the GMB account. Corresponds to the JSON property name

Returns:

  • (String)


2218
2219
2220
# File 'generated/google/apis/content_v2/classes.rb', line 2218

def name
  @name
end

#typeString

The type of the GMB account (User or Business). Corresponds to the JSON property type

Returns:

  • (String)


2223
2224
2225
# File 'generated/google/apis/content_v2/classes.rb', line 2223

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2230
2231
2232
2233
2234
2235
# File 'generated/google/apis/content_v2/classes.rb', line 2230

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