Class: Google::Apis::AdsenseV2::Site

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

Overview

Representation of a Site.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Site

Returns a new instance of Site.



1022
1023
1024
# File 'lib/google/apis/adsense_v2/classes.rb', line 1022

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

Instance Attribute Details

#auto_ads_enabledBoolean Also known as: auto_ads_enabled?

Whether auto ads is turned on for the site. Corresponds to the JSON property autoAdsEnabled

Returns:

  • (Boolean)


997
998
999
# File 'lib/google/apis/adsense_v2/classes.rb', line 997

def auto_ads_enabled
  @auto_ads_enabled
end

#domainString

Domain (or subdomain) of the site, e.g. "example.com" or "www.example.com". This is used in the OWNED_SITE_DOMAIN_NAME reporting dimension. Corresponds to the JSON property domain

Returns:

  • (String)


1004
1005
1006
# File 'lib/google/apis/adsense_v2/classes.rb', line 1004

def domain
  @domain
end

#nameString

Output only. Resource name of a site. Format: accounts/account/sites/site Corresponds to the JSON property name

Returns:

  • (String)


1009
1010
1011
# File 'lib/google/apis/adsense_v2/classes.rb', line 1009

def name
  @name
end

#reporting_dimension_idString

Output only. Unique ID of the site as used in the OWNED_SITE_ID reporting dimension. Corresponds to the JSON property reportingDimensionId

Returns:

  • (String)


1015
1016
1017
# File 'lib/google/apis/adsense_v2/classes.rb', line 1015

def reporting_dimension_id
  @reporting_dimension_id
end

#stateString

Output only. State of a site. Corresponds to the JSON property state

Returns:

  • (String)


1020
1021
1022
# File 'lib/google/apis/adsense_v2/classes.rb', line 1020

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1027
1028
1029
1030
1031
1032
1033
# File 'lib/google/apis/adsense_v2/classes.rb', line 1027

def update!(**args)
  @auto_ads_enabled = args[:auto_ads_enabled] if args.key?(:auto_ads_enabled)
  @domain = args[:domain] if args.key?(:domain)
  @name = args[:name] if args.key?(:name)
  @reporting_dimension_id = args[:reporting_dimension_id] if args.key?(:reporting_dimension_id)
  @state = args[:state] if args.key?(:state)
end