Class: Google::Apis::ContentV2_1::Account

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

Overview

Account data. After the creation of a new account it may take a few minutes before it is fully operational. The methods delete, insert, and update require the admin role.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Account

Returns a new instance of Account.



108
109
110
# File 'generated/google/apis/content_v2_1/classes.rb', line 108

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

Instance Attribute Details

List of linked Ads accounts that are active or pending approval. To create a new link request, add a new link with status active to the list. It will remain in a pending state until approved or rejected either in the Ads interface or through the AdWords API. To delete an active link, or to cancel a link request, remove it from the list. Corresponds to the JSON property adsLinks



38
39
40
# File 'generated/google/apis/content_v2_1/classes.rb', line 38

def ads_links
  @ads_links
end

#adult_contentBoolean Also known as: adult_content?

Indicates whether the merchant sells adult content. Corresponds to the JSON property adultContent

Returns:

  • (Boolean)


43
44
45
# File 'generated/google/apis/content_v2_1/classes.rb', line 43

def adult_content
  @adult_content
end

#business_informationGoogle::Apis::ContentV2_1::AccountBusinessInformation

The business information of the account. Corresponds to the JSON property businessInformation



49
50
51
# File 'generated/google/apis/content_v2_1/classes.rb', line 49

def business_information
  @business_information
end

#css_idFixnum

ID of CSS the account belongs to. Corresponds to the JSON property cssId

Returns:

  • (Fixnum)


54
55
56
# File 'generated/google/apis/content_v2_1/classes.rb', line 54

def css_id
  @css_id
end

The GMB account which is linked or in the process of being linked with the Merchant Center account. Corresponds to the JSON property googleMyBusinessLink



60
61
62
# File 'generated/google/apis/content_v2_1/classes.rb', line 60

def google_my_business_link
  @google_my_business_link
end

#idFixnum

Required for update. Merchant Center account ID. Corresponds to the JSON property id

Returns:

  • (Fixnum)


65
66
67
# File 'generated/google/apis/content_v2_1/classes.rb', line 65

def id
  @id
end

#kindString

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

Returns:

  • (String)


71
72
73
# File 'generated/google/apis/content_v2_1/classes.rb', line 71

def kind
  @kind
end

#label_idsArray<Fixnum>

List of label IDs that are assigned to the account by CSS. Corresponds to the JSON property labelIds

Returns:

  • (Array<Fixnum>)


76
77
78
# File 'generated/google/apis/content_v2_1/classes.rb', line 76

def label_ids
  @label_ids
end

#nameString

Required. Display name for the account. Corresponds to the JSON property name

Returns:

  • (String)


81
82
83
# File 'generated/google/apis/content_v2_1/classes.rb', line 81

def name
  @name
end

#seller_idString

Client-specific, locally-unique, internal ID for the child account. Corresponds to the JSON property sellerId

Returns:

  • (String)


86
87
88
# File 'generated/google/apis/content_v2_1/classes.rb', line 86

def seller_id
  @seller_id
end

#usersArray<Google::Apis::ContentV2_1::AccountUser>

Users with access to the account. Every account (except for subaccounts) must have at least one admin user. Corresponds to the JSON property users



92
93
94
# File 'generated/google/apis/content_v2_1/classes.rb', line 92

def users
  @users
end

#website_urlString

The merchant's website. Corresponds to the JSON property websiteUrl

Returns:

  • (String)


97
98
99
# File 'generated/google/apis/content_v2_1/classes.rb', line 97

def website_url
  @website_url
end

List of linked YouTube channels that are active or pending approval. To create a new link request, add a new link with status active to the list. It will remain in a pending state until approved or rejected in the YT Creator Studio interface. To delete an active link, or to cancel a link request, remove it from the list. Corresponds to the JSON property youtubeChannelLinks



106
107
108
# File 'generated/google/apis/content_v2_1/classes.rb', line 106

def youtube_channel_links
  @youtube_channel_links
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'generated/google/apis/content_v2_1/classes.rb', line 113

def update!(**args)
  @ads_links = args[:ads_links] if args.key?(:ads_links)
  @adult_content = args[:adult_content] if args.key?(:adult_content)
  @business_information = args[:business_information] if args.key?(:business_information)
  @css_id = args[:css_id] if args.key?(:css_id)
  @google_my_business_link = args[:google_my_business_link] if args.key?(:google_my_business_link)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @label_ids = args[:label_ids] if args.key?(:label_ids)
  @name = args[:name] if args.key?(:name)
  @seller_id = args[:seller_id] if args.key?(:seller_id)
  @users = args[:users] if args.key?(:users)
  @website_url = args[:website_url] if args.key?(:website_url)
  @youtube_channel_links = args[:youtube_channel_links] if args.key?(:youtube_channel_links)
end