public void SellerReverseDispute()
 {
     SellerReverseDisputeCall api = new SellerReverseDisputeCall(this.apiContext);
     String id = "Test";
     api.DisputeID = id;
     api.DisputeResolutionReason = DisputeResolutionReasonCodeType.CameToAgreement;
     // Make API call.
     ApiException gotException = null;
     try
     {
     api.Execute();
     }
     catch(ApiException ex)
     {
         gotException = ex;
     }
     Assert.IsNotNull(gotException);
 }