uber-rides/src/main/java/com/uber/sdk/rides/client/model/RideRequestParameters.java [443:475]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return end_latitude;
    }

    /**
     * Gets the dropoff location's Longitude for this Ride Request.
     */
    @Nullable
    public Float getDropoffLongitude() {
        return end_longitude;
    }

    /**
     * Gets the dropoff location's nickname for this Ride Request.
     */
    @Nullable
    public String getDropoffNickname() {
        return end_nickname;
    }

    /**
     * Gets the dropoff location's address for this Ride Request.
     */
    @Nullable
    public String getDropoffAddress() {
        return end_address;
    }

    /**
     * Gets the dropoff place identifier for this Ride Request.
     */
    @Nullable
    public String getDropoffPlaceId() {
        return end_place_id;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uber-rides/src/main/java/com/uber/sdk/rides/client/model/RideUpdateParameters.java [155:187]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return end_latitude;
    }

    /**
     * Gets the dropoff location's Longitude for this Ride update.
     */
    @Nullable
    public Float getDropoffLongitude() {
        return end_longitude;
    }

    /**
     * Gets the dropoff location's nickname for this Ride update.
     */
    @Nullable
    public String getDropoffNickname() {
        return end_nickname;
    }

    /**
     * Gets the dropoff location's address for this Ride update.
     */
    @Nullable
    public String getDropoffAddress() {
        return end_address;
    }

    /**
     * Gets the dropoff place identifier for this Ride update.
     */
    @Nullable
    public String getDropoffPlaceId() {
        return end_place_id;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



