GooglePlacesSwift Framework Reference

SearchByTextResponse

struct SearchByTextResponse
extension SearchByTextResponse : SearchResponse, Sendable, SendableMetatype

The response object for the searchByText method.

  • The pagination object for the response.

    Declaration

    Swift

    var pagination: Pagination<SearchByTextResponse>? { get }
  • The array of places that match the request.

    Declaration

    Swift

    var places: [Place]? { get }
  • A list of routing summaries where each entry associates to the corresponding place in the same index in the places field.

    Declaration

    Swift

    var routingSummaries: [RoutingSummary] { get }
  • A link to search with the given query on Google Maps.

    Declaration

    Swift

    var searchURL: URL? { get }