getOfferSet
inline suspend fun MarketplaceDiscoveryClient.getOfferSet(crossinline block: GetOfferSetRequest.Builder.() -> Unit): GetOfferSetResponse
Provides details about an offer set, which is a bundle of offers across multiple products. Includes the seller, availability dates, buyer notes, and associated product-offer pairs.
Samples
fun main() {
//sampleStart
// Get offer set with multiple products
val resp = marketplaceDiscoveryClient.getOfferSet {
offerSetId = "offerset-sampleId"
}
//sampleEnd
}