class Google::Apis::PartnersV2::LocalizedCompanyInfo

The localized company information.

Attributes

country_codes[RW]

List of country codes for the localized company info. Corresponds to the JSON property `countryCodes` @return [Array<String>]

display_name[RW]

Localized display name. Corresponds to the JSON property `displayName` @return [String]

language_code[RW]

Language code of the localized company info, as defined by BCP 47 (IETF BCP 47, “Tags for Identifying Languages”). Corresponds to the JSON property `languageCode` @return [String]

overview[RW]

Localized brief description that the company uses to advertise themselves. Corresponds to the JSON property `overview` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/partners_v2/classes.rb, line 601
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/partners_v2/classes.rb, line 606
def update!(**args)
  @language_code = args[:language_code] if args.key?(:language_code)
  @display_name = args[:display_name] if args.key?(:display_name)
  @overview = args[:overview] if args.key?(:overview)
  @country_codes = args[:country_codes] if args.key?(:country_codes)
end