Class PhotoSequencesResource.ListRequest
Lists all the PhotoSequences that belong to the user, in descending CreatePhotoSequence timestamp order.
Inheritance
Inherited Members
Namespace: Google.Apis.StreetViewPublish.v1
Assembly: Google.Apis.StreetViewPublish.v1.dll
Syntax
public class PhotoSequencesResource.ListRequest : StreetViewPublishBaseServiceRequest<ListPhotoSequencesResponse>, IClientServiceRequest<ListPhotoSequencesResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService)
Constructs a new List request.
Declaration
public ListRequest(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Properties
Filter
Optional. The filter expression. For example: imagery_type=SPHERICAL
. The filters supported are:
imagery_type
, processing_state
, min_latitude
, max_latitude
, min_longitude
, max_longitude
,
filename_query
, min_capture_time_seconds
, `max_capture_time_seconds. See https://google.aip.dev/160
for more information. Filename queries should sent as a Phrase in order to support multiple words and
special characters by adding escaped quotes. Ex: filename_query="example of a phrase.mp4"
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Optional. The maximum number of photo sequences to return. pageSize
must be non-negative. If
pageSize
is zero or is not provided, the default page size of 100 is used. The number of photo
sequences returned in the response may be less than pageSize
if the number of matches is less than
pageSize
. This is currently unimplemented but is in process.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. The nextPageToken value returned from a previous ListPhotoSequences request, if any.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()