class Google::Apis::DfareportingV3_3::AdvertiserLandingPagesListResponse
Landing Page List Response
Attributes
kind[RW]
Identifies what kind of resource this is. Value: the fixed string ā dfareporting#advertiserLandingPagesListResponseā. Corresponds to the JSON property `kind` @return [String]
landing_pages[RW]
Landing page collection Corresponds to the JSON property `landingPages` @return [Array<Google::Apis::DfareportingV3_3::LandingPage>]
next_page_token[RW]
Pagination token to be used for the next list operation. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 1214 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 1219 def update!(**args) @kind = args[:kind] if args.key?(:kind) @landing_pages = args[:landing_pages] if args.key?(:landing_pages) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end