Package com.stripe.model

Examples of com.stripe.model.Account


    assertEquals("https://api.stripe.com", Stripe.getApiBase());
  }

  @Test
  public void testAccountRetrieve() throws StripeException {
    Account retrievedAccount = Account.retrieve();
    assertEquals("test+bindings@stripe.com", retrievedAccount.getEmail());
    assertEquals(false, retrievedAccount.getChargesEnabled());
    assertEquals(false, retrievedAccount.getDetailsSubmitted());
    assertEquals(null, retrievedAccount.getStatementDescriptor());
    assertEquals(false, retrievedAccount.getTransfersEnabled());
    assertEquals("usd", retrievedAccount.getDefaultCurrency());
  }
View Full Code Here

TOP

Related Classes of com.stripe.model.Account

Copyright © 2018 www.massapicom. 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.