class Google::Apis::YoutubePartnerV1::Publisher

Attributes

cae_number[RW]

The publisher's unique CAE (Compositeur, Auteur and Editeur) number. Corresponds to the JSON property `caeNumber` @return [String]

id[RW]

A value that YouTube assigns and uses to uniquely identify the publisher. Corresponds to the JSON property `id` @return [String]

ipi_number[RW]

The publisher's unique IPI (Interested Parties Information) code. Corresponds to the JSON property `ipiNumber` @return [String]

kind[RW]

The type of the API resource. For this resource, the value is youtubePartner# publisher. Corresponds to the JSON property `kind` @return [String]

name[RW]

The publisher's name. Corresponds to the JSON property `name` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_partner_v1/classes.rb, line 2733
def update!(**args)
  @cae_number = args[:cae_number] if args.key?(:cae_number)
  @id = args[:id] if args.key?(:id)
  @ipi_number = args[:ipi_number] if args.key?(:ipi_number)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end