Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master merge #56

Merged
merged 13 commits into from
Aug 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Add the dependency to your `pom.xml`.
</dependency>
```

### Direct download <a href="https://oss.sonatype.org/service/local/repositories/releases/content/io/conekta/conekta-java/2.1.4/conekta-java-2.1.4.jar">conekta-java-2.1.4.jar</a>

### Source code
Obtain the latest version of the Conekta Java bindings with:

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.conekta</groupId>
<artifactId>conekta-java</artifactId>
<version>2.1.2-SNAPSHOT</version>
<version>2.1.5-SNAPSHOT</version>
<packaging>jar</packaging>
<name>conekta-java</name>
<description>This is a java library that allows interaction with https://api.conekta.io API.</description>
Expand Down
1 change: 1 addition & 0 deletions src/io/conekta/Customer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class Customer extends Resource {
public String email;
public String phone;
public String default_card_id;
public String default_payment_source_id;
public Boolean deleted;
public HashMap antifraud_info;
public ConektaList shipping_contacts = new ConektaList("shipping_contacts");
Expand Down