Class: Google::Apis::YoutubePartnerV1::Campaign

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

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) ⇒ Campaign

Returns a new instance of Campaign.



623
624
625
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 623

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

Instance Attribute Details

#campaign_dataGoogle::Apis::YoutubePartnerV1::CampaignData

The campaignData object contains details like the campaign's start and end dates, target and source. Corresponds to the JSON property campaignData



595
596
597
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 595

def campaign_data
  @campaign_data
end

#idString

The unique ID that YouTube uses to identify the campaign. Corresponds to the JSON property id

Returns:

  • (String)


600
601
602
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 600

def id
  @id
end

#kindString

The type of the API resource. For campaign resources, this value is youtubePartner#campaign. Corresponds to the JSON property kind

Returns:

  • (String)


606
607
608
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 606

def kind
  @kind
end

#statusString

The status of the campaign. Corresponds to the JSON property status

Returns:

  • (String)


611
612
613
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 611

def status
  @status
end

#time_createdDateTime

The time the campaign was created. Corresponds to the JSON property timeCreated

Returns:

  • (DateTime)


616
617
618
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 616

def time_created
  @time_created
end

#time_last_modifiedDateTime

The time the campaign was last modified. Corresponds to the JSON property timeLastModified

Returns:

  • (DateTime)


621
622
623
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 621

def time_last_modified
  @time_last_modified
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



628
629
630
631
632
633
634
635
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 628

def update!(**args)
  @campaign_data = args[:campaign_data] if args.key?(:campaign_data)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @status = args[:status] if args.key?(:status)
  @time_created = args[:time_created] if args.key?(:time_created)
  @time_last_modified = args[:time_last_modified] if args.key?(:time_last_modified)
end