Class: Google::Apis::DfareportingV2_5::Site

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

Overview

Contains properties of a site.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Site

Returns a new instance of Site.



10119
10120
10121
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10119

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

Instance Attribute Details

#account_idString

Account ID of this site. This is a read-only field that can be left blank. Corresponds to the JSON property accountId

Returns:

  • (String)


10056
10057
10058
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10056

def 
  @account_id
end

#approvedBoolean Also known as: approved?

Whether this site is approved. Corresponds to the JSON property approved

Returns:

  • (Boolean)


10061
10062
10063
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10061

def approved
  @approved
end

#directory_site_idString

Directory site associated with this site. This is a required field that is read-only after insertion. Corresponds to the JSON property directorySiteId

Returns:

  • (String)


10068
10069
10070
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10068

def directory_site_id
  @directory_site_id
end

#directory_site_id_dimension_valueGoogle::Apis::DfareportingV2_5::DimensionValue

Represents a DimensionValue resource. Corresponds to the JSON property directorySiteIdDimensionValue



10073
10074
10075
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10073

def directory_site_id_dimension_value
  @directory_site_id_dimension_value
end

#idString

ID of this site. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


10078
10079
10080
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10078

def id
  @id
end

#id_dimension_valueGoogle::Apis::DfareportingV2_5::DimensionValue

Represents a DimensionValue resource. Corresponds to the JSON property idDimensionValue



10083
10084
10085
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10083

def id_dimension_value
  @id_dimension_value
end

#key_nameString

Key name of this site. This is a read-only, auto-generated field. Corresponds to the JSON property keyName

Returns:

  • (String)


10088
10089
10090
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10088

def key_name
  @key_name
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#site". Corresponds to the JSON property kind

Returns:

  • (String)


10094
10095
10096
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10094

def kind
  @kind
end

#nameString

Name of this site.This is a required field. Must be less than 128 characters long. If this site is under a subaccount, the name must be unique among sites of the same subaccount. Otherwise, this site is a top-level site, and the name must be unique among top-level sites of the same account. Corresponds to the JSON property name

Returns:

  • (String)


10102
10103
10104
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10102

def name
  @name
end

#site_contactsArray<Google::Apis::DfareportingV2_5::SiteContact>

Site contacts. Corresponds to the JSON property siteContacts



10107
10108
10109
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10107

def site_contacts
  @site_contacts
end

#site_settingsGoogle::Apis::DfareportingV2_5::SiteSettings

Site Settings Corresponds to the JSON property siteSettings



10112
10113
10114
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10112

def site_settings
  @site_settings
end

#subaccount_idString

Subaccount ID of this site. This is a read-only field that can be left blank. Corresponds to the JSON property subaccountId

Returns:

  • (String)


10117
10118
10119
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10117

def subaccount_id
  @subaccount_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10124
10125
10126
10127
10128
10129
10130
10131
10132
10133
10134
10135
10136
10137
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 10124

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @approved = args[:approved] if args.key?(:approved)
  @directory_site_id = args[:directory_site_id] if args.key?(:directory_site_id)
  @directory_site_id_dimension_value = args[:directory_site_id_dimension_value] if args.key?(:directory_site_id_dimension_value)
  @id = args[:id] if args.key?(:id)
  @id_dimension_value = args[:id_dimension_value] if args.key?(:id_dimension_value)
  @key_name = args[:key_name] if args.key?(:key_name)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @site_contacts = args[:site_contacts] if args.key?(:site_contacts)
  @site_settings = args[:site_settings] if args.key?(:site_settings)
  @subaccount_id = args[:subaccount_id] if args.key?(:subaccount_id)
end