CarListingsResponse

public final class CarListingsResponse

Parameters

transactionId

A unique identifier for this transaction.

carCount

The number of cars offers returned in the response.

warnings

Container for warning codes

cars

List of cars matching the search criteria.

Constructors

Link copied to clipboard
public CarListingsResponse CarListingsResponse(String transactionId, Long carCount, List<CarsWarning> warnings, List<Car> cars)

Types

Link copied to clipboard
public final class Builder

Properties

Link copied to clipboard
private final Long carCount
Link copied to clipboard
@Valid()
private final List<Car> cars
Link copied to clipboard
@NotNull()
@Valid()
private final String transactionId
Link copied to clipboard
@Valid()
private final List<CarsWarning> warnings

Functions

Link copied to clipboard
public final static CarListingsResponse.Builder builder()
Link copied to clipboard
public final Long getCarCount()
Link copied to clipboard
public final List<Car> getCars()
Link copied to clipboard
public final String getTransactionId()
Link copied to clipboard
public final List<CarsWarning> getWarnings()
Link copied to clipboard