Table of Contents

Class SearchTextResponse

Namespace
GoogleMapsApi.Entities.PlacesNew.Response
Assembly
GoogleMapsApi.dll

Response from the Places API (New) Text Search endpoint.

public sealed class SearchTextResponse : IResponseFor<SearchTextRequest>
Inheritance
SearchTextResponse
Implements
Inherited Members

Properties

NextPageToken

Token to fetch the next page of results, if any.

[JsonPropertyName("nextPageToken")]
public string? NextPageToken { get; set; }

Property Value

string

Places

Matching places. Which fields are populated depends on the request field mask.

[JsonPropertyName("places")]
public List<Place>? Places { get; set; }

Property Value

List<Place>

RoutingSummaries

Per-place routing summaries, populated only when routing parameters were requested. Modeled shallowly; inspect the raw JSON for full detail.

[JsonPropertyName("routingSummaries")]
public List<object>? RoutingSummaries { get; set; }

Property Value

List<object>