Package tbdex.sdk.httpserver.models
Interface OfferingsApi
-
- All Implemented Interfaces:
public interface OfferingsApiInterface representing an API for interacting with TBDex offerings.
-
-
Method Summary
Modifier and Type Method Description abstract OfferinggetOffering(String id)Retrieves the offering with the specified ID. abstract List<Offering>getOfferings()Retrieves a list of offerings based on the provided filter. -
-
Method Detail
-
getOffering
abstract Offering getOffering(String id)
Retrieves the offering with the specified ID.
- Parameters:
id- The ID of the offering to retrieve.- Returns:
The Offering with the specified ID.
-
getOfferings
abstract List<Offering> getOfferings()
Retrieves a list of offerings based on the provided filter.
- Returns:
A list of Offering objects matching the filter.
-
-
-
-