Package org.oxerr.seatgeek.client
Interface ListingService
-
public interface ListingService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createListing(String ticketId, org.oxerr.seatgeek.client.model.request.CreateListingRequest r)
void
deleteListing(String ticketId)
Optional<org.oxerr.seatgeek.client.model.response.Listing>
getListing(String ticketId)
org.oxerr.seatgeek.client.model.response.MultipleListingsResponse
getListings(Integer page, Integer perPage, Boolean onlyBarcode, String... listingIds)
org.oxerr.seatgeek.client.model.request.UpdateListingRequest
updateListing(String ticketId, org.oxerr.seatgeek.client.model.request.UpdateListingRequest r)
-
-
-
Method Detail
-
createListing
void createListing(String ticketId, org.oxerr.seatgeek.client.model.request.CreateListingRequest r) throws IOException
- Throws:
IOException
-
updateListing
org.oxerr.seatgeek.client.model.request.UpdateListingRequest updateListing(String ticketId, org.oxerr.seatgeek.client.model.request.UpdateListingRequest r) throws IOException
- Throws:
IOException
-
getListing
Optional<org.oxerr.seatgeek.client.model.response.Listing> getListing(String ticketId) throws IOException
- Throws:
IOException
-
getListings
org.oxerr.seatgeek.client.model.response.MultipleListingsResponse getListings(Integer page, Integer perPage, Boolean onlyBarcode, String... listingIds) throws IOException
- Throws:
IOException
-
deleteListing
void deleteListing(String ticketId) throws IOException
- Throws:
IOException
-
-