Class: Google::Apis::StreetviewpublishV1::ListPhotosResponse
- Inherits:
-
Object
- Object
- Google::Apis::StreetviewpublishV1::ListPhotosResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/streetviewpublish_v1/classes.rb,
generated/google/apis/streetviewpublish_v1/representations.rb,
generated/google/apis/streetviewpublish_v1/representations.rb
Overview
Response to list all photos that belong to a user.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#photos ⇒ Array<Google::Apis::StreetviewpublishV1::Photo>
List of photos.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPhotosResponse
constructor
A new instance of ListPhotosResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListPhotosResponse
Returns a new instance of ListPhotosResponse
275 276 277 |
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
266 267 268 |
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 266 def next_page_token @next_page_token end |
#photos ⇒ Array<Google::Apis::StreetviewpublishV1::Photo>
List of photos. The maximum number of items returned is based on the
pageSize field
in the request.
Corresponds to the JSON property photos
273 274 275 |
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 273 def photos @photos end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
280 281 282 283 |
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 280 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @photos = args[:photos] if args.key?(:photos) end |