ActivityListingsResponse

public final class ActivityListingsResponse

Parameters

transactionId

A unique identifier for this transaction.

count

The number of activities returned in the response.

location

The location that the user searched, expressed in the exact format that the inventory system uses to designate the location.

warnings

Container for all warnings generated during the transaction.

startDate

The startDate of the returned group of activities in YYYY-MM-DD format.

endDate

The endDate of returned group of activities in YYYY-MM-DD format.

activities

List of activities matching the search criteria.

categories

Container for a breakdown of how many of each type of Activity have been returned in the API response.

Constructors

Link copied to clipboard
public ActivityListingsResponse ActivityListingsResponse(    String transactionId,     Long count,     String location,     List<ActivitiesWarning> warnings,     LocalDate startDate,     LocalDate endDate,     List<Activity> activities,     List<CategoryGroup> categories)

Types

Link copied to clipboard
public final class Builder

Properties

Link copied to clipboard
@Valid()
private final List<Activity> activities
Link copied to clipboard
@Valid()
private final List<CategoryGroup> categories
Link copied to clipboard
private final Long count
Link copied to clipboard
private final LocalDate endDate
Link copied to clipboard
@NotNull()
@Valid()
private final String location
Link copied to clipboard
private final LocalDate startDate
Link copied to clipboard
@NotNull()
@Valid()
private final String transactionId
Link copied to clipboard
@Valid()
private final List<ActivitiesWarning> warnings

Functions

Link copied to clipboard
Link copied to clipboard
public final List<Activity> getActivities()
Link copied to clipboard
Link copied to clipboard
public final Long getCount()
Link copied to clipboard
public final LocalDate getEndDate()
Link copied to clipboard
public final String getLocation()
Link copied to clipboard
public final LocalDate getStartDate()
Link copied to clipboard
public final String getTransactionId()
Link copied to clipboard
Link copied to clipboard