listBillingAdjustmentRequests
inline suspend fun MarketplaceAgreementClient.listBillingAdjustmentRequests(crossinline block: ListBillingAdjustmentRequestsRequest.Builder.() -> Unit): ListBillingAdjustmentRequestsResponse
Lists billing adjustment requests for a specific agreement. Sellers (proposers) can use this operation to view all billing adjustment requests associated with an agreement.
Pagination is supported through maxResults and nextToken parameters.
Samples
fun main() {
//sampleStart
// List billing adjustment requests
val resp = marketplaceAgreementClient.listBillingAdjustmentRequests {
agreementId = "agmt-SvIzsqYMyQwI3GWgJAe17URx"
}
//sampleEnd
}