Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: [google-maps-fleetengine] mark TerminalPointId as deprecated #12698

Merged
merged 2 commits into from
May 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ class LocationSensor(proto.Enum):


class TerminalPointId(proto.Message):
r"""Identifies a terminal point.
r"""Deprecated: TerminalPoints are no longer supported in Fleet Engine.
Use ``TerminalLocation.point`` instead.

This message has `oneof`_ fields (mutually exclusive fields).
For each oneof, at most one member field can be set at the same time.
Expand All @@ -188,7 +189,7 @@ class TerminalPointId(proto.Message):

This field is a member of `oneof`_ ``Id``.
value (str):
Unique ID of the terminal point.
Deprecated.
"""

place_id: str = proto.Field(
Expand All @@ -215,9 +216,9 @@ class TerminalLocation(proto.Message):
Required. Denotes the location of a trip
waypoint.
terminal_point_id (google.maps.fleetengine_v1.types.TerminalPointId):
ID of the terminal point.
Deprecated: Specify the ``point`` field instead.
access_point_id (str):
Deprecated.
Deprecated: Specify the ``point`` field instead.
trip_id (str):
Deprecated.
terminal_location_type (google.maps.fleetengine_v1.types.WaypointType):
Expand Down
Loading