class Google::Apis::AdmobV1beta::ListPublisherAccountsResponse

Response for the publisher account list request.

Attributes

account[RW]

Publisher that the client credentials can access. Corresponds to the JSON property `account` @return [Array<Google::Apis::AdmobV1beta::PublisherAccount>]

next_page_token[RW]

If not empty, indicates that there might be more accounts for the request; you must pass this value in a new `ListPublisherAccountsRequest`. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/admob_v1beta/classes.rb, line 485
def update!(**args)
  @account = args[:account] if args.key?(:account)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end