Class ListPhotoSequencesResponse
Response to list all photo sequences that belong to a user.
Implements
Inherited Members
Namespace: Google.Apis.StreetViewPublish.v1.Data
Assembly: Google.Apis.StreetViewPublish.v1.dll
Syntax
public class ListPhotoSequencesResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
Token to retrieve the next page of results, or empty if there are no more results in the list.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
PhotoSequences
List of photo sequences via Operation interface. The maximum number of items returned is based on the
pageSize field in the request. Each item in the list can have three possible states, * Operation.done
=
false, if the processing of PhotoSequence is not finished yet. * Operation.done
= true and
Operation.error
is populated, if there was an error in processing. * Operation.done
= true and
Operation.response
contains a PhotoSequence message, In each sequence, only Id is populated.
Declaration
[JsonProperty("photoSequences")]
public virtual IList<Operation> PhotoSequences { get; set; }
Property Value
Type | Description |
---|---|
IList<Operation> |