class Google::Apis::StreetviewpublishV1::ListPhotosResponse
Response to list all photos that belong to a user.
Attributes
next_page_token[RW]
Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
photos[RW]
List of photos. The pageSize field in the request determines the number of items returned. Corresponds to the JSON property `photos` @return [Array<Google::Apis::StreetviewpublishV1::Photo>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/streetviewpublish_v1/classes.rb, line 233 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/streetviewpublish_v1/classes.rb, line 238 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @photos = args[:photos] if args.key?(:photos) end