listCustomerAgreements  
  abstract suspend fun listCustomerAgreements(input: ListCustomerAgreementsRequest = ListCustomerAgreementsRequest { }): ListCustomerAgreementsResponse
List active customer-agreements applicable to calling identity.
Samples
fun main() { 
   //sampleStart 
   // The ListCustomerAgreements operation returns a collection of customer agreement resources in the
// ACTIVE state for the calling credential.
val resp = artifactClient.listCustomerAgreements() 
   //sampleEnd
}