Examples of DeletedCoupon


Examples of com.stripe.model.DeletedCoupon

  }

  @Test
  public void testCouponDelete() throws StripeException {
    Coupon createdCoupon = Coupon.create(getUniqueCouponParams());
    DeletedCoupon deletedCoupon = createdCoupon.delete();
    assertTrue(deletedCoupon.getDeleted());
    assertEquals(deletedCoupon.getId(), createdCoupon.getId());
  }
View Full Code Here

Examples of com.stripe.model.DeletedCoupon

  @Test
  public void testCouponDeletePerCallAPIKey() throws StripeException {
    Coupon createdCoupon = Coupon.create(getUniqueCouponParams(),
        Stripe.apiKey);
    DeletedCoupon deletedCoupon = createdCoupon.delete(Stripe.apiKey);
    assertTrue(deletedCoupon.getDeleted());
    assertEquals(deletedCoupon.getId(), createdCoupon.getId());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.