io.sphere.sdk.carts.queries.PaymentInfoQueryModelImpl Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.carts.queries;
import io.sphere.sdk.payments.Payment;
import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.QueryModelImpl;
import io.sphere.sdk.queries.QueryPredicate;
import io.sphere.sdk.queries.ReferenceCollectionQueryModel;
final class PaymentInfoQueryModelImpl extends QueryModelImpl implements PaymentInfoQueryModel {
public PaymentInfoQueryModelImpl(final QueryModel parent, final String pathSegment) {
super(parent, pathSegment);
}
@Override
public QueryPredicate isNotPresent() {
return isNotPresentPredicate();
}
@Override
public QueryPredicate isPresent() {
return isPresentPredicate();
}
@Override
public ReferenceCollectionQueryModel payments() {
return referenceCollectionModel("payments");
}
}