public Builder()

in uber-rides/src/main/java/com/uber/sdk/rides/client/model/RideRequestParameters.java [139:170]


        public Builder(
                @Nullable String productId,
                @Nullable Float startLatitude,
                @Nullable Float startLongitude,
                @Nullable String startNickname,
                @Nullable String startAddress,
                @Nullable String startPlaceId,
                @Nullable Float endLatitude,
                @Nullable Float endLongitude,
                @Nullable String endNickname,
                @Nullable String endAddress,
                @Nullable String endPlaceId,
                @Nullable String surgeConfirmationId,
                @Nullable String paymentMethodId,
                @Nullable Integer seatCount,
                @Nullable String fareId) {
            this.productId = productId;
            this.startLatitude = startLatitude;
            this.startLongitude = startLongitude;
            this.startNickname = startNickname;
            this.startAddress = startAddress;
            this.startPlaceId = startPlaceId;
            this.endLatitude = endLatitude;
            this.endLongitude = endLongitude;
            this.endNickname = endNickname;
            this.endAddress = endAddress;
            this.endPlaceId = endPlaceId;
            this.surgeConfirmationId = surgeConfirmationId;
            this.paymentMethodId = paymentMethodId;
            this.seatCount = seatCount;
            this.fareId = fareId;
        }