private RideRequestParameters()

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


    private RideRequestParameters(@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.product_id = productId;
        this.start_latitude = startLatitude;
        this.start_longitude = startLongitude;
        this.start_nickname = startNickname;
        this.start_address = startAddress;
        this.start_place_id = startPlaceId;
        this.end_latitude = endLatitude;
        this.end_longitude = endLongitude;
        this.end_nickname = endNickname;
        this.end_address = endAddress;
        this.end_place_id = endPlaceId;
        this.surge_confirmation_id = surgeConfirmationId;
        this.payment_method_id = paymentMethodId;
        this.seat_count = seatCount;
        this.fare_id = fareId;
    }