GooglePlacesSwift Framework Reference

PlaceDetailsResult

final class PlaceDetailsResult
extension PlaceDetailsResult : ObservableObject

The place details UI widget result.

  • Declaration

    Swift

    final var $error: Published<(any Error)?>.Publisher { get set }
  • Declaration

    Swift

    final var $place: Published<Place?>.Publisher { get set }
  • Declaration

    Swift

    final var $warnings: Published<Set<PlaceDetailsWarning>?>.Publisher { get set }
  • The type of publisher that emits before the object has changed.

    Declaration

    Swift

    typealias ObjectWillChangePublisher = ObservableObjectPublisher
  • The place details UI widget error.

    Declaration

    Swift

    @Published
    <(any Error)?> final var error: (any Error)? { get set }
  • Initializer for the place details result.

    Declaration

    Swift

    init()
  • The place details of the place object.

    Declaration

    Swift

    @Published
    <Place?> final var place: Place? { get set }
  • The place details UI widget warning.

    Declaration

    Swift

    @Published
    <Set<PlaceDetailsWarning>?> final var warnings: Set<PlaceDetailsWarning>? { get set }