All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.payments.queries.PaymentMethodInfoQueryModelImpl Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.payments.queries;

import io.sphere.sdk.queries.LocalizedStringQuerySortingModel;
import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.QueryModelImpl;
import io.sphere.sdk.queries.StringQuerySortingModel;

final class PaymentMethodInfoQueryModelImpl extends QueryModelImpl implements PaymentMethodInfoQueryModel {
    public PaymentMethodInfoQueryModelImpl(final QueryModel parent, final String pathSegment) {
        super(parent, pathSegment);
    }

    @Override
    public StringQuerySortingModel method() {
        return stringModel("method");
    }

    @Override
    public StringQuerySortingModel paymentInterface() {
        return stringModel("paymentInterface");
    }

    @Override
    public LocalizedStringQuerySortingModel name() {
        return localizedStringQuerySortingModel("name");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy