listBillingAdjustmentRequests

abstract suspend fun listBillingAdjustmentRequests(input: ListBillingAdjustmentRequestsRequest = ListBillingAdjustmentRequestsRequest { }): 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
}